Batch Payment Details

Get the details of a batch payment job.

GET https://<Platform-host>/api/payment/batch/sale/:id

Response

Response will return the list of transactions generated along with the status.

Field Name
Type
Description
Required?

job_id

uuid

A unique job ID

Required

status

string

"completed", "in_progress" or "failed"

Required

completed

integer

Number of successful transactions in the batch

Required

errors

integer

Number of unsuccessful transactions in the batch

Required

batch_sale_result

array

Array of transactions. Refer our sale API response documentation for details on the sale response object

Required

Sample Response

curl '<API_HOST>/api/payment/batch/sale/123'
-H 'Authorization: Basic <API_KEY>'

Last updated