Getting Started
Authentication
Some API endpoints are protected, and therefore require that you authenticate using an API token.
Generating a Token via POST Request
To generate a token programmatically, use the following POST request:
The request body accepts the following parameters:
email
(required): Your email addresspassword
(required): Your passwordfcmToken
(optional): Firebase Cloud Messaging tokenappVersion
(optional): Current version of the appdeviceType
(optional): Device type, valid options are “IOS”, “ANDROID”, “WEB”
Use your token
You can authenticate by adding an Authorization
header to all your HTTP calls. The Authorization header is formatted as such: Authorization: <token>
(replace <token>
with your token previously generated).
Example: