curl --request POST \
--url https://sandbox.onconsul.com/v1/oauth/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"client_secret": "<string>",
"grant_type": "<string>",
"code": "<string>",
"redirect_uri": "<string>",
"refresh_token": "<string>"
}
'