This page gives a step by step guide to obtain an access token using Postman. The token can be used to try out the Iris APIs.

Obtain OAuth 2.0 credentials from the Manager application.

Follow and complete step one "Obtain OAuth 2.0 credentials from the Manager application." of Access IRIS APIs.

After completing the step you have the credentials needed in Postman

608

Create an authentication request in Postman

Open Postman. Make sure you are on the "build" page and click "+".

1111

Select request method "POST" and enter "https://auth.trackunit.com/token" as request URL

781

Select the "Authorization" tab and set TYPE to "Basic Auth"

832

Enter your "Client ID" and "Client Secret" into "Username" and "Password"

842

Select the "Body" tab and pick "x-www-form-urlencoded". Add the following key/values:

  • grant_type=password
  • username=username from credentials
  • password=password from credentials
728

Hit "Send" and receive your access token!

870