Skip to main content
POST
/
custodians
/
me
/
alerts
/
webhooks
/
{alertWebhookId}
/
events
/
failed
/
replay
Replay failed alert webhook events
curl --request POST \
  --url https://api.portalhq.io/api/v3/custodians/me/alerts/webhooks/{alertWebhookId}/events/failed/replay \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventIds": [
    "eventId1"
  ]
}
'
{
  "data": {
    "replaying": [
      "alertWebhookEventId1"
    ],
    "failed": [
      "alertWebhookEventId2"
    ]
  }
}

Authorizations

Authorization
string
header
required

Portal API Key (Custodian API Key). Pass as a Bearer token in the Authorization header.

Path Parameters

alertWebhookId
string
required

The unique identifier of the alert webhook.

Body

application/json
eventIds
string[]
required

List of failed alert webhook event IDs to replay.

Response

Replay initiated

data
object