Actions V2

Manage incident actions.

Incident actions are used during an incident, to track work such as 'restart the database' or 'contact the customer'.

You can manage actions in the incident Slack channel with /incident actions, or on the incident homepage.

List Actions V2

List all actions for an organisation.

Request
query Parameters
incident_id
string

Find actions related to this incident

Example: incident_id=01FCNDV6P870EA6S7TK1DSYDG0
incident_mode
string

Filter to actions from incidents of the given mode. If not set, only actions from standard and retrospective incidents are returned

Enum: "standard" "retrospective" "test" "tutorial" Examples:
incident_mode=standard
Responses
200

OK response.

get/v2/actions
Request samples
Response samples
application/json
{
  • "actions": [
    ]
}

Show Actions V2

Get a single incident action.

Request
path Parameters
id
required
string

Unique identifier for the action

Example: 01FCNDV6P870EA6S7TK1DSYDG0
Responses
200

OK response.

get/v2/actions/{id}
Request samples
Response samples
application/json
{
  • "action": {
    }
}