Get User
Returns details of a specific user by their UUID.
Endpoint
GET /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,
"user": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"user_name": "john_doe",
"email": "john@example.com",
"company": "Acme Corp",
"contact": "+1234567890",
"timezone": "Asia/Kolkata",
"currency": "inr",
"active": true,
"type": "owner",
"app_ids": ["660e8400-e29b-41d4-a716-446655440001"],
"created_at": 1708000000000,
"updated_at": 1708000000000
}
}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}Get a user by ID{user_id}