Skip to main content

Resources

Bulk Payments

BulkPayments is a JSON:API resource returned by Create Bulk Payment. Top-level fields:

NameTypeDescription
typestringType of the resource. The value is always bulkPayments.
attributesJSON ObjectJSON object representing the bulk payment run.

Attributes

NameTypeDescription
bulkIdstringIdentifier of the bulk payment run. Generated by Unit. Used to correlate bulkPayments.failed and bulkPayments.finished webhook events.

The individual payments created by the bulk are standard payment resources (ACH, Book, Wire).

Example BulkPayments resource:
{
"data": {
"type": "bulkPayments",
"attributes": {
"bulkId": "18"
}
}
}