POST
/
token
curl --request POST \
--url https://api.cello.so/token \
--header 'Content-Type: application/json' \
--data '{
"accessKeyId": "<accessKeyId>",
"secretAccessKey": "<secretAccessKey>"
}'
{
"accessToken": "<accessToken>",
"refreshToken": "<refreshToken>",
"expiresIn": 18000
}

Body

application/json

Use this schema to exchange accessKeyId and secretAccessKey for tokens.

Response

201
application/json

Tokens issued

Returned when exchanging accessKeyId and secretAccessKey for tokens.