Request new token

Create a new Bearer access_token.

jQuery.ajax("https://myserver.com/token", {
  type: "POST",
  data: {
    "grant_type":"password",
    "username":"MyUsername", 
    "password":"MyPassword"
  },
  headers: {
    "Content-Type": "application/x-www-form-urlencoded"
  }, 
  success: function(data) {
    console.log(data);
  }
});
Form Data
string
Defaults to password

The value must be 'password'.

string
Defaults to demouser

iMIS login username.

string
Defaults to demo123

iMIS user password.

Response
200

The request was successful.

Language
Response
Click Try It! to start a request and see the response here!

Contact us
Copyright © Advanced Solutions International, All rights reserved.