Authentication
Authenticating and Obtaining a Token
To authenticate and receive an authorization token, make a POST request to the following address
Request
Request should have a JSON body containing your email and password.
Response
Successful Authentication (200 OK): The response will include a JSON with the user's token and details.
Failed Authentication (401 Unauthorized): Indicates incorrect credentials.
Usage
Use the obtained token for subsequent authenticated requests to the ad server's API. The server is using the autherization header, each request shosuld contain the header with the obtained token like in the following example:
Examples
CURL
Python Example
Last updated