Jwt
List the jwt tokens of a user
GET
https://api.tiledesk.com/v3/jwt/history
Query Parameters
Name | Type | Description |
---|---|---|
sortField | string | what field to sort the results by. |
direction | string | sort direction: 1 or -1. Return the results in ascending or descending order. defaults to desc |
page | number | what page of results to fetch. defaults to first page. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | authorization token. Basic Auth or JWT |
Revoke a jwt token by JTI (JWT identifier)
DELETE
https://api.tiledesk.com/v3/jwt/history/:jti
Path Parameters
Name | Type | Description |
---|---|---|
jti | string | The JTI Json Web Token identifier. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | authorization token. Basic Auth or JWT |
Revoke a jwt token by id
DELETE
https://api.tiledesk.com/v3/jwt/history/id/:id
Path Parameters
Name | Type | Description |
---|---|---|
id | string | The JWT identifier |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | authorization token. Basic Auth or JWT |
Last updated