Update a triage response template
PATCH
/projects/{projectId}/triage_response_templates/{id}
Updates an existing response template. Admin role required. Name uniqueness is enforced within the project.
Authorizations
tokenAuth
Personal access token authentication. Send via Authorization header: Authorization: Token vulcan_xxx. Tokens are SHA-256 hashed server-side (never stored in plaintext). Scopes: read (GET), write (mutations), admin (everything). Create tokens via Settings → API Tokens in the web UI.
Type
HTTP (token)
Parameters
Path Parameters
projectId*
Numeric ID of the project.
Type
Requiredinteger
Example
42id*
Numeric ID of the template.
Type
Requiredinteger
Example
1Request Body
application/json
JSON "triage_response_template": { "name": "Accept - updated", "body": "Updated response text." }
{
}
Responses
Template updated
application/json
JSON "triage_response_template": { "id": 1, "name": "Accept - standard", "body": "Concur with the finding as written. No changes needed.", "created_by_id": 42, "created_at": "2026-06-03T01:00:00Z" }
{
}