curl --request POST \
--url https://api.example.com/api/partners/v2.0/auth/token \
--header 'Content-Type: application/json' \
--data '
{
"grant_type": "password",
"username": "<string>",
"password": "<string>",
"refresh_token": "<string>"
}
'{
"access_token": "<string>",
"expires_in": 123,
"token_type": "<string>",
"scope": "<string>",
"refresh_token": "<string>"
}Was this page helpful?
curl --request POST \
--url https://api.example.com/api/partners/v2.0/auth/token \
--header 'Content-Type: application/json' \
--data '
{
"grant_type": "password",
"username": "<string>",
"password": "<string>",
"refresh_token": "<string>"
}
'{
"access_token": "<string>",
"expires_in": 123,
"token_type": "<string>",
"scope": "<string>",
"refresh_token": "<string>"
}