List User Apps
Returns all apps belonging to a specific user.
Endpoint
GET /api/v1/partner/users/:user_id/appsPath Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | UUID | Yes | The user’s unique identifier |
Response
Success 200 OK
{
"success": true,
"apps": [
{
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "My WhatsApp Bot",
"partner_id": "880e8400-e29b-41d4-a716-446655440003",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"waba_status": "Not Connected",
"phone_number": "",
"created_at": "2026-02-15T10:45:22.123Z",
"updated_at": "2026-02-15T10:45:22.123Z"
}
]
}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 |
Try It
GET
/api/v1/partner/users/{user_id}/appsList apps for a user{user_id}