action c19qrserver_delete_user_user_id { label: "Delete a team member's user record" description: "To preserve referential integrity in the database, the user account will not be deleted from the database. Rather, the password will be set to the empty string, effectively preventing that user from logging in. Furthermore, all active sessions for that user will be deleted, as will any password reset tokens. \n" provider: c19qrserver method: DELETE path: "/user/{userId}" encoding: json input: { type: "object" properties: { userId: { type: "integer" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }