Skip to main content
GET
/
users
/
{id}
Get User by ID
curl --request GET \
  --url https://integrations.clopos.com/open-api/users/{id} \
  --header 'x-brand: <api-key>' \
  --header 'x-token: <api-key>' \
  --header 'x-venue: <api-key>'
{
  "id": 123,
  "email": "[email protected]",
  "username": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "status": true,
  "owner": 123,
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-token
string
header
required

Access token obtained from /auth endpoint

x-brand
string
header
required

Brand identifier

x-venue
string
header
required

Venue identifier

Path Parameters

id
integer
required

User ID

Response

User retrieved successfully.

id
integer
email
string<email> | null
username
string
first_name
string | null
last_name
string | null
status
boolean
owner
integer
created_at
string<date-time>