Verify Token Endpoint

This endpoint is made for you to check the validity of your JWT token. This is not required to run the production app but to help you debug.

Verify the validity of a temporary token

POST api/verify-token

This endpoint allows clients to test the validity of a JWT token generated by the api/token endpoint.

Headers

Name
Value
Description

Content-Type

application/json

The content type returned.

Authorization

Bearer ACCESS_TOKEN

The ACCESS_TOKEN is the JWT token generated from the api/token endpoint

Response

{
    "valid": true,
    "taiki_user": "066ce922-b022-7b4c-8000-932366cc3b90",
    "client": "066ccb8b-a2df-7851-8000-dc413ace872e"
}

Last updated