v1

latestOpenAPI 3.0.3Proprietary2026-07-2441103204.8 KB
Batch

Batch link status

Returns the status of the batch.

get/api/batches/{batchId}

Path parameters

batchIdstring required
Example:421e1e63-ddd5-46ec-8812-74eda861259b

The batch ID for the request.

Response

Status received.

idstring required

Unique identifier for the payment attempt.

createdAtstring required

Timestamp when the batch link was created.

updatedAtstring required

Timestamp when the batch link was updated.

entityIdstring required

The entity for the request.

filenamestring required

The name of the file that was uploaded.

status'initiated' | 'processing' | 'completed' | 'error' required

Payment link status.

successfulRowsnumber required

The amount of successfully created payment links.

totalRowsnumber required

The total amount of rows parsed from file.

errorCodestring

The error code will only be returned if the file fails to upload.

Example response

{
  "id": "c2bb1dd6-008b-448d-a496-c224de432356",
  "createdAt": "2022-10-25T09:03:22.832Z",
  "updatedAt": "2022-10-25T09:03:22.832Z",
  "entityId": "8ac7a4ca694cec2601694cf5f9360026",
  "filename": "test.csv",
  "status": "initiated",
  "successfulRows": 24,
  "totalRows": 25,
  "errorCode": "1000.100.00"
}