curl --location --request POST '/api/tokens' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant-type": "credentials",
"client-id": "string",
"client-secret": "string",
"refresh-token": "string",
"sub-domain": "string",
"domain": "string",
"username": "string",
"password": "string"
}'
{
"access-token": "string",
"refresh-token": "string"
}