To use the Dimensions API, you need to authorize your requests with an OAuth flow. This means that you need to obtain an access token allowing you to interact with your Dimensions account through the API.
Create an access token:
Log into your account and head on to the settings page.
Click on the Create Credentials button to generate your client ID and secret.
Copy your client ID and secret. You will need them to request an access token.
Make a POST request to the Authenticate endpoint with your client ID and secret as the parameters.
If the request is successful, you will receive a response with your access token and its expiration time. A valid response looks like this:
βUse your access token to make API calls to the Dimensions endpoints. You need to include the access token as the value of the Authorization header in your requests.
β
β