Authentication
Token endpoint (Identity Server)
Request body (application/x-www-form-urlencoded)
application/x-www-form-urlencoded)cURL example
curl --request POST \
--url 'https://<identity-server-host>/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=<your_client_id>' \
--data-urlencode 'client_secret=<your_client_secret>' \
--data-urlencode 'scope=cloudrx_orderservice,cloudrx_productservice,cloudrx_smsservice,cloudrx_courierservice'Success response
Error responses
Token usage
Notes
Last updated
Was this helpful?