Execute payments

For all active retry cycles associated with the invoice, debit memo, and/or account IDs provided, schedules the next payment retry attempt to occur in the next hourly payment processor run.

Request
Request Body schema: application/json
account_ids
Array of arrays

IDs of accounts.

debit_memo_ids
Array of arrays

IDs of debit memos.

invoice_ids
Array of arrays

IDs of invoices.

Responses
200
post/api/v1/payments/execute_payments
Request samples
application/json
{
  • "account_ids": [
    ],
  • "invoice_ids": [
    ],
  • "debit_memo_ids": [
    ]
}
Response samples
application/json
{
  • "success": true,
  • "message": "Payments with the following IDs enqueued for processing: [100, 101, 110, 111, 121]"
}