Skip to main content
GET
/
clients
/
{client_id}
Get a specific client
curl --request GET \
  --url https://app.usequeue.com/api/v1/clients/{client_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "client": {
    "id": "abc123",
    "username": "Client Inc.",
    "email": "[email protected]"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

client_id
string
required

Response

200 - application/json

Client detail

success
boolean
Example:

true

client
object