Deletes user with the specified ID.

DELETE /api/v1/users/{userId}

Path parameters

Responses

DELETE /api/v1/users/{userId}
curl \
 --request DELETE 'https://crowdparlay.com/api/v1/users/{userId}'
Response examples (200)
{
  "id": "string",
  "username": "string",
  "display_name": "string",
  "email": "string",
  "avatar_url": "string"
}
Response examples (403)
{
  "error_description": "string"
}
Response examples (404)
{
  "error_description": "string"
}
Response examples (500)
{
  "error_description": "string"
}