Table of content
Activate API older version
The following documentation is dedicated to the older version of the Activate API. If you've started using the API before July, 1st 2024, this is the page for you.
Differences between older and newer versions
API reference
A swagger listing all the endpoint is available for your convenience.
Base URL
Authentication
Authentication is done by passing a token in the request header Authorization
. For example using cURL:
curl 'https://api.allo-media.net/calls' --header 'Authorization: Token ABCD1234'
In case of invalid token you'll be returned a status 401 Unauthorized
with an error in the JSON payload:
{
"errors": [
{
"id": "all",
"title": "authentication_failed",
"detail": "Invalid token."
}
]
}
Get your token
You have to already be a customer of Allo-Media in order to be able to get data from this API. If so, please see with your account manager to get an API token. You will then be able to pass this value in the Authorization header of each request.