POST: OAuth 2 Generate Token for Login/Authentication

Generate an access token and refresh token that you can use to call our APIs.

Resource URL

https://t6apilive.azurewebsites.net/oauth/token

Use the following Header Parameters

  • Content-Type: application/x-www-form-urlencoded

Request Parameters:

  • grant_type: password

  • client_id: <User’s client_id supplied by T6>

  • client_secret: <User’s client_secret supplied by T6>

 

Response for 200 OK:

  • access_token: <Generated Token>

  • token_type: bearer

  • expires_in: <Time until token is expired and needs to be re-generated>