Skip to main content

Generate JWT token for Vault SDK

POST 

/v1/vault/token

Generates a JWT token for a specific end user to access Vault SDK endpoints. This endpoint:

  • Creates a short-lived JWT token valid for a specific user
  • Token expires based on configured expiration time (default 6 minutes)
  • Token is intended for use with token-related operations only

Request

Body

required

User ID for which to generate the JWT token

    userId stringrequired

    The unique identifier of the end user

Responses

JWT token was successfully generated.

Schema

    traceId string
    message string

    data

    object

    token stringrequired

    The generated JWT token

Loading...