Sending API calls
Learn how to send API calls using either /auth or an API key.
API calls that require an API key and shopper token
API calls that only require an API key
API calls that require an API key and /auth
/authSending an API call using /auth
/authcurl --location --request POST 'https:///api.digitalriver.com/auth' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Accept: application/json' \
--header 'Authorization: Basic {{confidential_key}}=' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username={{username}}' \
--data-urlencode 'password={{password}}'Last updated