Bulk Errors

A bulk error object captures all the errors that occurred while attempting to generate an individual bulk result for a bulk request

Attribute

Description

id string

Unique identifier for the bulk error

request_errors
object

An object that contains the errors that occurred while processing a single resource request.

live_mode
boolean

This field will be true if this bulk error was created with a live API key or false if created with a sandbox API key.

{
  "id": "289da574-a011-4613-a17c-b329d46423cc",
  "object": "bulk_error",
  "live_mode": true,
  "request_errors": [
    {
      "code": "parameter_invalid",
      "message": "Originating account is not a valid record",
      "parameter": "originating_account"
    }
  ],
  "created_at": "2023-08-18T22:27:38Z",
  "updated_at": "2023-08-18T22:27:38Z"
}