Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.clopos.com/llms.txt

Use this file to discover all available pages before exploring further.

HTTP Request

GET https://integrations.clopos.com/open-api/v2/users/{id}
This endpoint requires authentication. Include your JWT in the x-token header. See Authentication for how to obtain a token and Errors for error responses.

Path Parameters

id
integer
required
The unique identifier of the user.

Request Example

curl --location 'https://integrations.clopos.com/open-api/v2/users/1' \
  --header 'Content-Type: application/json' \
  --header 'Accept: application/json'

Response

{
  "success": true,
  "data": {
    "id": 1,
    "email": "vitrin@clopos.com",
    "username": "Clopos Test",
    "first_name": "Clopos",
    "last_name": "Test",
    "mobile_number": null,
    "owner": 1,
    "status": true,
    "created_at": "2026-01-13T14:08:48.000000Z",
    "updated_at": "2026-02-20T15:07:02.000000Z"
  }
}

Field Reference

User Object

FieldTypeDescription
idintegerUnique user identifier.
emailstring (nullable)Email address associated with the user.
usernamestringDisplay name shown in the POS.
first_namestring (nullable)First name of the user.
last_namestring (nullable)Last name of the user.
mobile_numberstring (nullable)Mobile phone number.
ownerinteger1 if the user owns the brand, otherwise 0.
statusbooleanIndicates whether the user account is active.
created_atstringTimestamp when the user was created (ISO 8601).
updated_atstringTimestamp when the user was last updated (ISO 8601).