Authentication

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.

Generate API Token

post

Generates a token for accessing the Medianova API. Use the generated token to access analytics stats and perform operations.

Body
api_keystringRequired

Your API key.

api_secretstringRequired

Your API secret.

Responses
200
Successful response with generated token.
application/json
post
POST /api/v1/auth/login/token HTTP/1.1
Host: cloud.medianova.com
Content-Type: application/json
Accept: */*
Content-Length: 42

{
  "api_key": "string",
  "api_secret": "string"
}
200

Successful response with generated token.

{
  "status": true,
  "token": "hidden_token",
  "session": "hidden_session",
  "expire": 1666024005
}

Last updated

Was this helpful?