Delete user

DELETE /v1/publishers/users/{userId}

Delete the user account and all associated data for the given id. This operation cannot be un-done!

Responses

  • 202 application/json

    Accepted

    Hide response attribute Show response attribute object
    • data object
      Hide data attribute Show data attribute
      • id integer Required

        the id assigned to the given request

  • 404

    User not found

  • 409

    Delete Request already exist

DELETE /v1/publishers/users/{userId}
curl \
 -X DELETE https://api.bitlabs.ai/v1/publishers/users/{userId} \
 -H "X-S2S-Token: $API_KEY"
Response examples (202)
{
  "data": {
    "id": 42
  }
}