v1
latestOpenAPI 3.0.32026-07-248079274.0 KBAuthentication
Create an access_token
Access to the API is by Bearer Tokens, this request generates an access_token that can be used in the authorization header of each request. You generate the token by passing your client credentials through the login endpoint.
post/login
Request body
Example request
{
"app_id": "72693514",
"app_key": "de0eef006b4c30440aeca8ca5ac58789"
}Response
OK
Example response
{
"token_type": "Bearer",
"expires_in": 3600,
"access_token": "eyJ0eXAiOiJKV1QiLC....."
}