Skip to content

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
integer
Required
Example42
id*

Numeric ID of the template.

Type
integer
Required
Example1

Request 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"
  
}
}

Playground

Server
Authorization
Variables
Key
Value
Body

Samples

Powered by VitePress OpenAPI

Part of the MITRE Security Automation Framework (SAF)