Authentication
Last updated
Was this helpful?
Last updated
Was this helpful?
This document provides guidelines on how to authenticate your application with the Sendbox API. This updated version includes streamlined authentication processes and reflects recent changes to the API.
To integrate with the Sendbox API, you'll need to create an application and obtain an access token, which will be used for all subsequent API requests. Here's how to get started:
Environment
Developer Dashboard URL
Base URL
Staging
Production
Sign Up: Visit and sign up for an account if you haven’t already.
Dashboard: After signing in, navigate to your dashboard and create a new application. You will need to provide the following details:
Name: The name of your application.
Description: A brief description of what your application does.
Webhook URL: The URL where Sendbox will send event notifications for your application.
After submitting this information, your application will be created successfully. Keep your application keys in a safe place as they will be required for making API requests.
Once your application is created, you'll be issued an access token. This token is crucial for authorizing API requests.
Access Token: The access token is used to authenticate your application. It should be included in the header of every API request.
To interact with the Sendbox API, include your access token in the header of your HTTP requests as shown below:
Authorization Header:
The header must include the Authorization
key, followed by your access token.
Please note that access tokens are now permanent and do not expire. There is no need to handle token refresh mechanisms.