v1

latestOpenAPI 3.0.32026-07-248079274.0 KB
Faster Payments

Process a payout

Execute a payment to one of your customers from your Acquired-managed account.

post/pay-out

Headers

Company-Idstring uuid

Unique ID assigned by Acquired.com for your company.

Midstring uuid

Unique ID assigned by Acquired.com connecting to a specific acquiring bank.

Request body

webhook_urlstring uri

Where we should send webhook notifications throughout the authorisation process.

Example request

{
  "transaction": {
    "order_id": "1f1f2a61-5b68-4725-a0ce-9560514ec00b",
    "amount": 15.02,
    "currency": "gbp"
  },
  "payment": {
    "payee_id": "4ebc5489-7b9f-4324-983e-07d4b2b00035",
    "reference": "Custom Ref 001",
    "sort_code": "123456",
    "account_number": "87654321",
    "account_name": "Mr E Johnson"
  },
  "webhook_url": "https://example.com/webhook"
}

Response

Created

status'pending'
transaction_idstring uuid

Unique identifier assigned by Acquired.com for the transaction record.

Example response

{
  "status": "pending",
  "transaction_id": "bd3fbbcd-411e-4760-8a9f-7af420d26314"
}