Delete User

Permanently delete a user

DELETEhttps://api.jamdesk.com/api/v1/users/:id

Permanently deletes a user and all associated data.

This action is irreversible. All user data will be permanently deleted.

Path Parameters

idstringrequired

The user ID.

curl -X DELETE "https://api.example.com/v1/users/user_123" \
  -H "Authorization: Bearer $TOKEN"
{
  "data": {
    "id": "user_123",
    "deleted": true
  }
}