Identity.Api
  1. Identity
Identity.Api
  • Identity
    • /token
      POST
    • /verify
      GET
  • Schemas
    • Schemas
      • TokenGrantType
      • TokenRequest
  1. Identity

/token

POST
/token
This is my super 1337 endpoint for getting jwt. This was super easy to create. I just imported the openapi json and added a comment in the description field in the desktop client
Does it support markdown?
No, but I can format the text in the GUI🥰

Request

Body Params application/json

Examples

Responses

🟢200OK
OK
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "client_id": "string",
    "client_email": "string",
    "client_secret": "string",
    "custom_claims": {
        "property1": null,
        "property2": null
    },
    "grant_type": "client_credentials"
}'
Modified at 2025-09-05 06:50:02
Previous
Identity
Next
/verify
Built with