curl --location --request POST 'https://auth-dev.jollor.com/oauth2/token?grant_type=password' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"client_id": "<your client id>",
"client_secret": "<your secret>",
"scope": "profile agency"
}'
{
"access_token": "string",
"token_type": "string",
"scope": [
"string"
],
"expire_in": 0,
"refresh_token": "string"
}