DELETE
/
api
/
external
/
platform-users
curl --request DELETE \
  --url https://backend.nebuly.com/api/external/platform-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "users": [
    "<string>"
  ]
}'
{
  "message": "<string>"
}

This endpoint allows you to delete one or more platform users by their end_user identifiers.

You need an API key to authenticate. See here for more information about the API keys.

All the passed users will be deleted.

For users of the european region, the correct endpoint is https://backend.eu.nebuly.com/api/external/platform-users.

users
string[]
required

A list of end_user identifiers representing the users you want to delete.

message
string

Confirmation message indicating the users were deleted successfully.