Get Access Token
Name
Data Type (Length)
Description
const message = "hello world";
curl --location -g '{{baseurl}}/api/auth/v1/authenticate' \
--header 'Content-Type: application/json' \
--data '{
"clientId": "string",
"clientSecret": "string"
}{
"accessToken": "string",
"tokenType": "string",
"expirationTime": "long",//EPOCH time
"tokenValiditySec": "long" //Token validity in Seconds
}Last updated