# JWT direct link configurations
Use the following endpoints to manage the JWT direct link configurations programmatically.
# Quick reference
Type | Resource | Description |
---|---|---|
PUT | /api/account/signature_verification_key | Update JWT signature verification key |
# Update JWT signature verification key
Updates the public key used for verifying the JWT signature. Returns Embedded Vendor ID
, used for generating the JWT token.
PUT /api/account/signature_verification_key
# Body Parameters
Name | Type | Description |
---|---|---|
key | string | Public key (RS256) |
# Sample request
curl -X PUT 'https://www.workato.com/api/account/signature_verification_key' \
-H 'Authorization: Bearer <api_token>' \
-H 'Content-Type: application/json' \
-d '{"key":"-----BEGIN PUBLIC KEY-----\nKEY VALUE GOES HERE\n-----END PUBLIC KEY-----"}'
# Response
{
"vendor_id": "we9898zgsgsgw38394",
"success": true
}
Last updated: 1/12/2024, 4:26:53 PM