Skip to content

Create a triage response template

POST
/projects/{projectId}/triage_response_templates

Creates a new reusable response template for the project. Admin role required. Template names must be unique within the project (case-insensitive).

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

Request Body

application/json
JSON
{
  
"triage_response_template": {
  
  
"name": "Decline - needs evidence",
  
  
"body": "Unable to incorporate without supporting evidence."
  
}
}

Responses

Template created

application/json
JSON
{
  
"triage_response_template": {
  
  
"id": 3,
  
  
"name": "Decline - needs evidence",
  
  
"body": "Unable to incorporate without supporting evidence.",
  
  
"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)