/api/login
Method
POST
Url
https://platform.globaltravelrule.com/api/login
The user logs in to obtain the JWT Token and uses it to make api calls. (The login session is Single-sign on: SSO, if you login from other session, current session will be forced logout)
Authentication
No authentication
Path Parameters
No path parameters
Query Parameters
No query parameters
Request Body (Optional)
- Schema
 - Example
 
{
  "accessKey": "string",
  "expireInMinutes": 0,
  "callbackUrl": "string",
  "vaspCode": "string",
  "vaspPublicKey": "string",
  "signedSecretKey": "string"
}
Responses
Status 200
OK
JSON Content
- Schema
 - Example
 
{
  "data": {
    "jwt": "string",
    "vaspCode": "string"
  },
  "verifyStatus": 0,
  "verifyMessage": "string"
}