Skip to main content

Error handling

Validation errors

If validation fails for any row, the error response will include details such as the rowIndex, the field that failed, and a human-readable message describing the violation.

Continuing on error

The continueOnError option controls how failures are handled:

  • continueOnError: true: Valid rows are inserted successfully, and a list of detailed errors is returned for the failed rows.
  • continueOnError: false (default): The entire request is aborted immediately upon the first failure.
⚠️Caution

Setting continueOnError to true is NOT recommended.