Event

Resend an event

Resend a notification event.

:::info You can choose to resend the event to specific channels or to all configured channels by omitting the channel_ids field in the request body. :::

post/notification/{id}/resend

Path parameters

idstring uuid required

The notification ID to resend, in UUID format.

Request body

channel_idsstring[]

An array of channel IDs to which the notification should be resent.

ℹ️ Note: If omitted, the event is resent to all configured channels.

Example request

{
  "channel_ids": [
    "123",
    "234",
    "345"
  ]
}

Response

Resend accepted.

notification_idstring uuid required

Unique ID of the newly created notification generated by the resend operation.

Example response

{
  "notification_id": "3b72e4c1-87a5-4f42-b1e0-4d9a7c4a02b1"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.