BulkTriggerResponse
The result of a batch submission.
Number of events successfully queued.
Possible values: >= 0
2500events object[]required
Per-event outcomes, in the order submitted.
The channel the event was queued on, when it was queued.
emailWhy this event was rejected, when it was.
Subscriber usr_1 has no reachable channelNerve's identifier for the event, present when it was queued.
evt_9c4f1a2b3d5e6f708192a3b4c5d6e7f8Zero-based position of this event in the submitted events array, so a
failure can be matched back to what you sent.
Possible values: >= 0
QUEUED or FAILED.
QUEUEDNumber of events rejected. Zero when status is QUEUED.
Possible values: >= 0
0Identifier for the batch, for correlating logs. Individual events each
carry their own eventId.
job_batch_4d2f8a1c9b3e7f60QUEUED when every event was accepted, PARTIAL when some were not.
A batch where nothing succeeded is still reported here rather than as an
error status, because the per-event reasons are what you need.
QUEUED{
"count": 2500,
"events": [
{
"channel": "email",
"error": "Subscriber usr_1 has no reachable channel",
"eventId": "evt_9c4f1a2b3d5e6f708192a3b4c5d6e7f8",
"index": 0,
"status": "QUEUED"
}
],
"failedCount": 0,
"jobId": "job_batch_4d2f8a1c9b3e7f60",
"status": "QUEUED"
}