Managing existing Session tokens
Auth API Reference
For complete information on the available endpoints and schemas available in the Auth API, explore the API Reference.
Once you have obtained Session token, you can check whether it's valid or revoke it, using the following endpoints:
GEThttps://auth.quiltt.io/v1/users/session
DELETEhttps://auth.quiltt.io/v1/users/session
The Session token must be provided as a Bearer token in the Authorization
header:
Link to this section#Checking the Current Session Token
To check a Session token, make a GET request:
If your token is valid, you will receive a 200
HTTP response code, with information about the session in the response body:
Link to this section#Revoking the current Session token
To revoke a Session token, make a DELETE request:
Successful responses will return a 204
HTTP response code.
See the Auth API Reference for full documentation of the supported endpoints.