From Postman Response tab

-Wrong input while generating report

In Postman Response tab :

While authentication and generating token, in the response tab if you fetch error such as :

{
    "status": false,
    "message": "Credentials mismatch, please re-check and try."
}

Recheck the generated Company id , Client id and Client Secret Id and then fetch response again

-Even if the error keeps on recurring, Another alternative would be to regenerate the token and then try again with a new token . This issue should be reported to the DSA team .

-Unauthenticated

Duration for a token being valid for use is Maximum 24 Hours. In the response tab if you receive a message as “Unauthenticated” that means the token has expired and needs to be regenerated again .

Or:

Check the Authorization in Postman. The TYPE should be “ Inherit Auth from parent “

-API limit exceeds

Per Minute
{
    "status": false,
    "message": "Per Minute API usage exceeded"
}
  • If hourly API usage limit exceed : Response :
  • Hourly
    {
        "status": false,
        "message": "Hourly API usage exceeded"
    }
  • If daily API usage limit exceeds : Response :
  • Daily
    {
        "status": false,
        "message": "Daily API usage exceeded"
    }
  • If monthly API usage limit exceeds : Response:
  • Monthly
    {
        "status": false,
        "message": "Monthly API usage exceeded"
    }

    -Credentials Mismatch

    If there is mismatch in DSA Client Is, Client secret ID, Company ID. “Credentials mismatch, please re-check and try” Response will be fetched by the user.

    {
        "status": false,
        "message": "Credentials mismatch, please re-check and try."
    }