Skip to main content
GET
/
v1
/
batches
/
{id}
/
errors
Get batch errors
curl --request GET \
  --url https://api.antonpayments.com/v1/batches/{id}/errors \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "errors": [
      {
        "row": 123,
        "field": "<string>",
        "message": "<string>"
      }
    ],
    "warnings": [
      {
        "row": 123,
        "type": "<string>",
        "message": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Path Parameters

id
string
required

Resource identifier.

Response

Batch errors and warnings.

data
object
required