Clients
Get client
Retrieve a single client by its ID.
GET /teams/{teamId}/clients/{clientId}
Returns a single client object.
Authentication: Bearer token · Role: viewer · Permission:
clients:read · Rate limit: default (120 / 60s)Path parameters
teamId
string · uuid v7 required
The team the client belongs to.
clientId
string · uuid v7 required
The ID of the client to retrieve, from list clients.
Request
curl https://api.twominutereports.com/v1/teams/0190f8b0-1a2b-7c3d-8e4f-5a6b7c8d9e0f/clients/0190f8c0-1a2b-7c3d-8e4f-5a6b7c8d9e0f \
-H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Response
Returns the full client object.
{
"success": true,
"data": {
"id": "0190f8c0-1a2b-7c3d-8e4f-5a6b7c8d9e0f",
"name": "Acme Corp",
"domain": "acme.com",
"status": "active",
"metadata": {
"logoUrl": "https://assets.gox.ai/tmr/logos/acme.png",
"brandColor": "#0A66C2"
},
"link": "https://hub.twominutereports.com/clients/0190f8c0-1a2b-7c3d-8e4f-5a6b7c8d9e0f",
"createdAt": "2026-01-12T08:15:00.000Z",
"updatedAt": "2026-05-20T11:42:00.000Z",
"createdBy": "0190f8a1-2b3c-7d4e-8f90-1a2b3c4d5e6f"
}
}
{
"success": false,
"error": { "code": "BAD_REQUEST", "message": "Invalid UUID: \"abc\"" }
}
Returned when the client does not exist or does not belong to this team.
{
"success": false,
"error": { "code": "NOT_FOUND", "message": "Client not found" }
}