Delete User
Permanently deletes a user and all their associated apps (WABAs). This action cannot be undone.
Endpoint
DELETE /api/v1/partner/users/:user_idPath Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | UUID | Yes | The user’s unique identifier |
Response
Success 200 OK
{
"success": true,
"message": "User and associated apps deleted successfully"
}Errors
| Status | Error | Description |
|---|---|---|
400 | Invalid user ID | user_id is not a valid UUID |
401 | Unauthorized | Invalid or missing API key |
404 | User not found | User doesn’t exist under your account |
Warning: Deleting a user also deletes all their apps, WABA connections, and associated data. This cannot be reversed.
Try It
DELETE
/api/v1/partner/users/{user_id}Delete a user{user_id}