Applications

Generate app token

post
Path parameters
org-idintegerRequired

Org ID

Example: 10
Responses
200
Success
application/json
post
POST /application/installation/{org-id}/token HTTP/1.1
Host: 
Accept: */*
{
  "accessToken": "eyJhbGciOiJIUzI1...",
  "expiresAt": "2023-04-03T10:37:45.814Z"
}

Validate token

post
Body
tokenstringRequired

Access token

Example: eyJhbGciOiJIUzI1...
Responses
200
Success
application/json
post
POST /application/tokeninfo HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 31

{
  "token": "eyJhbGciOiJIUzI1..."
}
{
  "uid": "n6JS8min1QfFv7we6olRGnnXeGU2",
  "appId": 1,
  "expiry": 1680516804008,
  "orgId": 1
}

Last updated