Applications
Path parameters
org-idintegerRequiredExample:
Org ID
10
Responses
200
Success
application/json
400
Error validating JWT
500
Internal server error
post
POST /application/installation/{org-id}/token HTTP/1.1
Host:
Accept: */*
{
"accessToken": "eyJhbGciOiJIUzI1...",
"expiresAt": "2023-04-03T10:37:45.814Z"
}
Body
tokenstringRequiredExample:
Access token
eyJhbGciOiJIUzI1...
Responses
200
Success
application/json
400
Invalid token / Token expired / Error validating token
500
Internal server error
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