Replace a triage response template
PUT
/projects/{projectId}/triage_response_templates/{id}
Full replacement of an existing template. Same behavior as PATCH. Admin role required.
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 - standard", "body": "Concur with the finding as written." }
{
}
Responses
Template replaced
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" }
{
}