Skip to content

Exchange app client credentials for an access token.

POST
/apps/token
curl --request POST \
--url https://your-store.myciqra.com/apps/token

No token required — this call authenticates with the app’s client credentials.

OK

Media typeapplication/json
object
accessToken
required
string
expiresIn
required
integer | string format: int32
/^-?(?:0|[1-9]\d*)$/
scope
required
string
scopeNotYetEnforced
required
string
tokenType
required
string
Examplegenerated
{
"accessToken": "example",
"expiresIn": 1,
"scope": "example",
"scopeNotYetEnforced": "example",
"tokenType": "example"
}

Bad Request

Media typeapplication/json
object
error
required
string
errorDescription
required
string
Examplegenerated
{
"error": "example",
"errorDescription": "example"
}