Skip to main content
GET
/
clients
List all clients
curl --request GET \
  --url https://str.keroshospitality.com/api/v1/clients \
  --header 'Authorization: Bearer <token>'
{
  "clients": [
    {
      "client_id": "new-client",
      "created_at": "2025-03-26T15:04:05Z",
      "last_updated": "2025-03-26T15:04:05Z",
      "roles": [
        "str-uploader"
      ]
    }
  ],
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Response

200 - application/json

Clients retrieved successfully

ClientListResponse provides a list of clients

clients
object[]

Clients is a list of clients

requestId
string