Obtain accessToken & refreshToken using your accessKeyId and secretAccessKey, or obtain a new accessToken using a refreshToken.
cURL
accessKey
curl --request POST \ --url https://api.cello.so/token \ --header 'Content-Type: application/json' \ --data '{ "accessKeyId": "<accessKeyId>", "secretAccessKey": "<secretAccessKey>"}'
201
{ "accessToken": "<accessToken>", "refreshToken": "<refreshToken>", "expiresIn": 18000}
Use this schema to exchange accessKeyId and secretAccessKey for tokens.
Tokens issued
Returned when exchanging accessKeyId and secretAccessKey for tokens.
Was this page helpful?