Deletes user with the specified ID.

DELETE /api/v1/users/{userId}

Path parameters

  • userId string(uuid) Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string(uuid)
    • username string
    • display_name string
    • email string
    • avatar_url string | null
  • 403 application/json

    Forbidden

    Hide response attribute Show response attribute object
    • error_description string
  • 404 application/json

    Not Found

    Hide response attribute Show response attribute object
    • error_description string
  • 500 application/json

    Internal Server Error

    Hide response attribute Show response attribute object
    • error_description string
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"
}