v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Process Payments

Process payments

Process payments to add payments to payment files or API requests.

post/process_payments

Request body

connected_account_idsstring[] required

The list of connected account IDs to process payments for. Use ['*'] to include all connected accounts.

payment_typesstring[] required

The list of payment types to process. The following types are supported: bacs, chaps, fps, icelandic_exp, sepa, sepa_instant, sepa_urgent, swift, target2, treasury. Use ['*'] to process payments of all types.

Example request

{
  "connected_account_ids": [
    "*"
  ],
  "payment_types": [
    "*"
  ]
}

Response

Payment files processed successfully.

Example response

{
  "accounts": {
    "successfully_processed": [
      "sepa"
    ]
  }
}