Access tokens
Learn how to manage access tokens.
Getting an access token
Use the GET /oauth20/access-token
to get an access token.
curl --location -g --request GET
'https://api.digitalriver.com/oauth20/access-token' \
--header 'Authorization: bearer {{access_token}}' \
...
Deleting an access token
Use the DELETE /oauth20/access-token
to delete an access token.
curl --location -g --request DELETE 'https://api.digitalriver.com/oauth20/access-token' \
--header 'Authorization: bearer {{access_token}}' \
...
Last updated
Was this helpful?