All URIs are relative to https://api.clerk.dev/v1
| Method | HTTP request | Description |
|---|---|---|
| create_jwt_template | POST /jwt_templates | Create a JWT template |
| delete_jwt_template | DELETE /jwt_templates/{template_id} | Delete a Template |
| get_jwt_template | GET /jwt_templates/{template_id} | Retrieve a template |
| list_jwt_templates | GET /jwt_templates | List all templates |
| update_jwt_template | PATCH /jwt_templates/{template_id} | Update a JWT template |
crate::models::JwtTemplate create_jwt_template(create_jwt_template_request) Create a JWT template
Create a new JWT template
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| create_jwt_template_request | Option<CreateJwtTemplateRequest> |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::DeletedObject delete_jwt_template(template_id) Delete a Template
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| template_id | String | JWT Template ID | [required] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::JwtTemplate get_jwt_template(template_id) Retrieve a template
Retrieve the details of a given JWT template
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| template_id | String | JWT Template ID | [required] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Veccrate::models::JwtTemplate list_jwt_templates() List all templates
This endpoint does not need any parameter.
Veccrate::models::JwtTemplate
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::JwtTemplate update_jwt_template(template_id, create_jwt_template_request) Update a JWT template
Updates an existing JWT template
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| template_id | String | The ID of the JWT template to update | [required] | |
| create_jwt_template_request | Option<CreateJwtTemplateRequest> |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]