Authentication
REQUIREMENT
The base URL for all API requests is https://platform.sendbound.com/api/v1REQUIREMENT
The API token MUST be included as a query parameter in all subsequent requests. The token value is assigned to the api_token parameter as a query parameter.One-Time Authentication
This endpoint is designed to allow uses with API token, direct access to the dashboard.
POST /login-token
api_token=NAim6P4gapLXU2ZUad7i46RAgtSnqTqRtFBX7BZpbyFTntUYZ8Dgtppf0byD
curl --location --request POST 'https://platform.sendbound.com/api/v1/login-token?api_token=NAim6P4gapLXU2ZUad7i46RAgtSnqTqRtFBX7BZpbyFTntUYZ8Dgtppf0byD'
{
"token": "meRSCUiG2o2AIqHbfYIVFpRWunhUYnZH",
"url": "https://platform.sendbound.com/login/token/meRSCUiG2o2AIqHbfYIVFpRWunhUYnZH"
}
Query Parameters
api_token
Kindly reference here to obtain the API token.
Response Parameters
token
This parameter allows you access to your dashboard directly without your email and password.
url
This parameter is the fully constructed URL that allows you access to the dashboard.
NB: It contains the token
parameter in the response body.