Skip to Content

Get User

Returns details of a specific user by their UUID.

Endpoint

GET /api/v1/partner/users/:user_id

Path Parameters

ParameterTypeRequiredDescription
user_idUUIDYesThe 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

StatusErrorDescription
400Invalid user IDuser_id is not a valid UUID
401UnauthorizedInvalid or missing API key
404User not foundUser doesn’t exist under your account

Try It

GET/api/v1/partner/users/{user_id}Get a user by ID
{user_id}