action exavault_delete_user { label: "Delete a user" description: "Delete a user from the account. Deleting a user does **NOT** delete any files from the account; it merely removes a user's access. Aternatively, locking a user via the [PATCH /users/{id}](#operation/updateUser) will keep the user in your account, but make it unable to log in. \n\nResources and shares owned by the deleted user will be owned by the master user after the deletion.\n\n**Notes:**\n \n- You must have [admin-level access](/docs/account/04-users/01-admin-users) to delete a user.\n- The primary owner of the account cannot be deleted.\n" provider: exavault method: DELETE path: "/users/{id}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } } required: ["ev-access-token", "ev-api-key"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } responseStatus: { type: "integer" description: "Http status code of the response. " } } } }