Skip to main content
DELETE
/
api
/
external
/
eligible-users
Delete Eligible Users
curl --request DELETE \
  --url https://backend.nebuly.com/api/external/eligible-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "users": [
    "<string>"
  ]
}
'
{
  "message": "<string>"
}
This endpoint allows you to delete one or more eligible 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.
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.