Follow-ups V2

Manage incident follow-ups.

Incidents can have follow-ups associated with them, which track work that should be done after an incident (e.g. improving some documentation, or upgrading a dependency). They can also be exported to external issue trackers.

You can manage follow-ups in the incident Slack channel with /incident follow-ups, or on the incident homepage.

List Follow-ups V2

List all follow-ups for an organisation.

Request
query Parameters
incident_id
string

Find follow-ups related to this incident

Example: incident_id=01FCNDV6P870EA6S7TK1DSYDG0
incident_mode
string

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

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

OK response.

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

Show Follow-ups V2

Get a single incident follow-up.

Request
path Parameters
id
required
string

Unique identifier for the follow-up

Example: 01FCNDV6P870EA6S7TK1DSYDG0
Responses
200

OK response.

get/v2/follow_ups/{id}
Request samples
Response samples
application/json
{
  • "follow_up": {
    }
}