Login with API Token
After generating token here, you will be given API credentials to access our API. You will be allowed to access analytic stats and do operations taht works within our API. The validity period of the api key is 30 days.
To view token information, go to Profile -> My Account -> API Tokens tab at the top right.
Click on the Generate Token button.
Method | URL |
---|---|
POST | https://cloud.medianova.com/api/v1/auth/login/token |
Parameters | Description | Type | Required |
---|---|---|---|
api_key | API token is the key information required for login. | String | Yes |
api_secret | API token is the secret information required for login. | String | Yes |
Payload
{
"api_key": "string",
"api_secret": "string"
}
Response
{
"status": true,
"token": "hidden_token",
"session": "hidden_session",
"expire": 1666024005
}