Making Requests

Here are the pieces you will need to put together your first request.

Authentication

In every request to the API, you will need to include an access token.

Go to your dashboard to create an access token. You can choose whether to provide read-only or read-write access to the access token when you generate it.

Note: The user will get this token through email at first. After successful integration, the base URL will be provided. All the guides will be based on the test environment.

Use the “Bearer” authentication scheme to send your access token in the Authorization request header.

Authorization: <YOUR_ACCESS_TOKEN>

MIME Types

The JSON format should be used for all request bodies delivered to the API. When submitting a request body (i.e., for POST and PUT requests), ensure that you provide a Content-Type header:

Content-Type: application/json