Squadcast is now SolarWinds Incident Response
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Incidents/Runbooks

Attach Runbooks

post
/v3/incidents/{IncidentId}/runbooks
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
IncidentIdstringRequired
Body
runbooksstring[]Required
Responses
201

The request has succeeded and a new resource has been created as a result.

application/json
post/v3/incidents/{IncidentId}/runbooks
POST /v3/incidents/{IncidentId}/runbooks HTTP/1.1
Host: api.squadcast.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 21

{
  "runbooks": [
    "text"
  ]
}
{
  "data": [
    {
      "id": "text",
      "incident_id": "text",
      "runbook_id": "text",
      "name": "text",
      "steps": [
        {
          "content": "text",
          "completed": true,
          "completed_at": "2026-01-01T00:00:00.000Z"
        }
      ],
      "deleted": true,
      "deleted_at": "2026-01-01T00:00:00.000Z"
    }
  ]
}

Last updated