# Completely remove a user from the system Permanently remove a User and their details from all Programs. A non-existent user, or a user that's already been forgotten, will return a 204. Endpoint: DELETE /scim/v2/Users/{user_id} Version: v2 Security: oauth2_as_a_server, oauth2_as_a_user ## Path parameters: - `user_id` (string, required) Identifier of the user to delete. It could be used either the user's id, federated identifier, an email address, or external Id. The look up will be done in the above mentioned order. ## Response 400 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Reason for bad request" - `status` (integer) Example: 400 ## Response 401 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Authentication failure" - `status` (integer) Example: 401 ## Response 403 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "Operation is not permitted" - `status` (integer) Example: 403 ## Response 404 fields (*/*): - `schemas` (array) Example: ["urn:ietf:params:scim:api:messages:2.0:Error"] - `detail` (string) Example: "The requested resource was not found." - `status` (integer) Example: 404