Skip to main content

BulkEventResult

The outcome for one event within a batch.

channelstring | nullnullable

The channel the event was queued on, when it was queued.

Example: email
errorstring | nullnullable

Why this event was rejected, when it was.

Example: Subscriber usr_1 has no reachable channel
eventIdstring | nullnullable

Nerve's identifier for the event, present when it was queued.

Example: evt_9c4f1a2b3d5e6f708192a3b4c5d6e7f8
indexintegerrequired

Zero-based position of this event in the submitted events array, so a failure can be matched back to what you sent.

Possible values: >= 0

statusstringrequired

QUEUED or FAILED.

Example: QUEUED
BulkEventResult
{
"channel": "email",
"error": "Subscriber usr_1 has no reachable channel",
"eventId": "evt_9c4f1a2b3d5e6f708192a3b4c5d6e7f8",
"index": 0,
"status": "QUEUED"
}