How to get your access token from POSTMAN

Modified on Mon, 18 Mar at 2:37 PM

Welcome to the wonderful World of Skynamo Analytics!

The following information will be required:

  • Credentials to access your Skynamo data through the reporting API (Client ID, Client Secret).


Getting your access token via POSTMAN

From POSTMAN, create a new collection and then click on Create new Collection and then on Add a request.




  • Get an access_token using the credentials (Client ID, Client Secret) provided to access the Skynamo Reporting API.

    curl --request POST \
    --url https://login.skynamo.me/oauth/token \
    --header ‘content-type: application/json’ \
    --data {“client_id”:“XXXX”,“client_secret”:“XXX”,“audience”:“https://analytics.skynamo.com/”,
     “grant_type”:“client_credentials”}


Select POST and enter the request URL:

A screenshot of a computer

Description automatically generated


Select Headers and add the relevant KEY:Content-Type and VALUE: application/json


Select Body and raw and paste the below with your relevant Client ID and client secret:

A black rectangular object with a black stripe

Description automatically generated

 

Then click on Send.

 Your access token should then generate below between the double
quotations (" ").

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article