Delete a User WIP

DELETE /v1/users/:id

Permanently delete a user. It cannot be undone.

It will remove or anonymize user data from all features content and cancel meetings where user was the booker or the host. It will cancel talks where the user was the only speaker, otherwise it will be removed from the speaker list and the talk status will stay unchanged.

Users with admin roles cannot be deleted using this API.

Attributes

No attributes

Returns

If a valid user id is passed and the user is deleted with success the response will return the following attributes, otherwise it will return an error.

code string

message string

id string
Unique identifier of the deleted user.

Sample response

{
  "code": "ok",
  "message": "User deleted successfully",
  "id": "6627cb4d6f1f3e2d6cf414bb"
}