Field | Type | Required | Description | Example |
---|---|---|---|---|
name |
str | ✔️ | JWT template name | Example Template |
claims |
models.CreateJWTTemplateClaims | ✔️ | JWT template claims in JSON format | {} |
lifetime |
OptionalNullable[float] | ➖ | JWT token lifetime | 3600 |
allowed_clock_skew |
OptionalNullable[float] | ➖ | JWT token allowed clock skew | 5 |
custom_signing_key |
Optional[bool] | ➖ | Whether a custom signing key/algorithm is also provided for this template | false |
signing_algorithm |
OptionalNullable[str] | ➖ | The custom signing algorithm to use when minting JWTs. Required if custom_signing_key is true . |
RS256 |
signing_key |
OptionalNullable[str] | ➖ | The custom signing private key to use when minting JWTs. Required if custom_signing_key is true . |
PRIVATE_KEY_PLACEHOLDER |