Skip to main content
Reassign when an escalation went to the wrong people or path. This creates a new escalation to the right targets, linked to the original. You can optionally resolve the original so the first group stops being paged. Reassigning is available from the dashboard, Slack, Microsoft Teams, the mobile app, and the API.
The Reassign action on an escalation

Reassign from the dashboard

  1. Open the escalation
  2. Click Reassign
  3. Choose who to page (escalation path, users, or a Catalog entry)
  4. Optionally edit the title or description
  5. Choose whether to Resolve the original escalation (on by default)
  6. Click Reassign
The Reassign drawer with a target selected and a preview of who will be
paged
You land on the new escalation. The original shows as Reassigned, with a link to the new one.

Reassign from Slack

On the escalation message, click Reassign, fill in the modal, and submit. The original message updates to show where it was reassigned, and the Reassign button is removed.

Reassign from Microsoft Teams

Reassign opens the dashboard form (Teams has no in-chat modal). Complete it there, then return to Teams.

Reassign with the API

Use POST /v2/escalations/{escalation_id}/actions/reassign to reassign from your own tooling, so a page follows a change you make somewhere else. Teams who treat a ticketing system as their source of truth use this to move the page when the ticket moves. Pass either escalation_path_id or user_ids, not both:
You get the new escalation back. A few things to know:
  • resolve_original defaults to true, so the original stops paging. Pass false to leave it running alongside the new one.
  • The reassignment is attributed to the API key. To attribute it to one of your users instead, set the X-Incident-User header, which needs the Act on behalf of users permission.
  • Reassigning again is rejected, because an escalation can only be reassigned once. Keep the ID from the first response: a retry won’t return it, though it also won’t page anyone twice.

Rules

  • An escalation can only be reassigned once. To redirect again, reassign from the new escalation or create a manual escalation.
  • You can reassign to incident.io escalation paths, users, or Catalog entries that resolve to those. You cannot reassign to external providers (PagerDuty, Opsgenie, etc.).
  • Reassigning requires permission to create escalations. See team-based permissions if your organization restricts this by team. Where those restrictions apply, you can only reassign an escalation one of your teams owns, and only to an escalation path one of them owns. Reassigning straight to people needs the permission at the account level, because a page aimed at a person has no owning team.
  • To reassign to a Catalog entry, your organization needs an escalate form configured (Settings → Forms → Escalate). Escalation paths and users don’t need one.
Reassigning is different from Escalate to next level, which advances the same escalation to the next tier in its existing path.
This page covers reassigning an escalation deliberately, whether a person does it or your own tooling does, which resolves the original by default. An escalation path can also hand an unacknowledged escalation to another path on its own, without anyone deciding to, which expires the original instead. See Reassigning escalation paths.