POST
/
token
curl --request POST \
  --url https://api.chift.eu/token \
  --header 'Content-Type: application/json' \
  --data '{
  "clientId": "<string>",
  "clientSecret": "<string>",
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "marketplaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "expires_on": 123
}

Body

application/json
clientId
string
required
clientSecret
string
required
accountId
string
required
marketplaceId
string

Response

200
application/json
Successful Response
access_token
string
required
token_type
string
required
expires_in
integer
required
expires_on
integer
required