Bulk Import Beneficiary
The API generates a group of multiple beneficiaries by making a single request within the account. After registration, the beneficiary ID can be used to transmit payment instructions, and the job ID can be used on the status endpoint to check the job status.
POST
/payments/beneficiaries/import
Body Parameters Request
update_payments
boolean
When set to true, will update the beneficiary details for all pending payments created for the same beneficiary
signature
string
items
array
object
items[]
object
items[].id
string
items[].country
string
/^[A-Z]{2,2}$/
items[].currency
string
/^[A-Z]{3,3}$/
items[].entity_type
string
INDIVIDUAL, BUSINESS
items[].bank_details
object
items[].entity
object
Body Parameters Response
job_id
string
The job id assigned to this import
started_at
string
date-time
The time the import job started
processed
integer
The total number of items processed so far
total
integer
Total number of items in bulk
processing
integer
The number of items currently being processed
failed
integer
Total number of failed items
status
string
QUEUED, DONE
The current job status
progress
array
object
List of item progress
progress[]
object
progress[].row
integer
The index of the item
progress[].error
object
Information regarding error encountered for this item
progress[].error.error_info
object
progress[].error.error_info.valid
boolean
Is this item valid
progress[].error.error_info.warnings
array
object
List of warnings encountered for this item
progress[].error.error_info.warnings[]
object
progress[].error.error_info.warnings[].description
string
Description of issue
progress[].error.error_info.warnings[].properties
array
string
the properties this issue applies to
progress[].error.error_info.warnings[].properties[]
string
progress[].error.error_info.errors
array
object
List of errors encountered for this item
progress[].error.error_info.errors[]
object
progress[].error.error_info.errors[].description
string
Description of issue
progress[].error.error_info.errors[].properties
array
string
the properties this issue applies to
progress[].error.error_info.errors[].properties[]
string
progress[].error.error_code
integer
The error code associated with this issue
progress[].error.error
string
error type encountered
progress[].error.message
string
Human readable error information
progress[].status
string
FAILED, SUCCESS
The status of this item's impo
Request Example
Response Examples
Last updated