Version 2 of the Clopos Open API introduces JWT-based authentication and
simplifies request headers. After authentication you only need to send
x-token with each call.Base URL
What changed in v2
- Endpoints live under
/open-api/v2. /authnow requires anintegrator_idalong with your existing client credentials.venue_idis not part of the auth payload.- Subsequent requests require only the
x-tokenheader; brand and venue headers are no longer needed. - Auth responses now return both
expires_inandexpires_at(epoch seconds).
Authentication flow
1
Collect credentials
Use your
client_id, client_secret, brand, and integrator_id.2
Call /v2/auth
Exchange credentials for a JWT access token and note the
expires_at value.3
Call other endpoints
Include only
x-token with the JWT you received.