v1

latestOpenAPI 3.0.12026-07-24128351404.9 KB
Business Account

Get Account Transactions

Get the transaction history of business accounts.

get/open-api/v3/business/accounts/transactions

Query parameters

idstring uuid

The UUID of the id.

Example:d84a92b5-8fb9-4052-80a3-1b1594ebcf84

The UUID of the id.

accountIdstring uuid required

The UUID of the Account.

Example:d84a92b5-8fb9-4052-80a3-1b1594ebcf84

The UUID of the Account.

currency'CNH' | 'USD' | 'HKD' | 'GBP' | 'EUR' | 'AUD' | 'AED' | 'ILS' | 'CAD' | 'SGD' | 'MYR' | 'JPY' | 'IDR'

Currency code.

Currency code.

businessType'OUTBOUND' | 'INBOUND'

Business type: OUTBOUND - outgoing funds, INBOUND - incoming funds

Example:INBOUND

Business type: OUTBOUND - outgoing funds, INBOUND - incoming funds

limitstring number

Limits the number of items to be returned.

Limits the number of items to be returned.

pagestring number

The page to be returned, counting from 1 as the first page.

The page to be returned, counting from 1 as the first page.

Response

success

codestring

Business code, 000000 means success

messagestring

Message description

Example response

{
  "code": "000000",
  "message": "success",
  "data": {
    "total": "5",
    "list": [
      {
        "id": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84",
        "accountId": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84",
        "settlementAmount": "100.0",
        "fees": [
          {
            "amount": "3.14"
          }
        ],
        "businessType": "OUTBOUND",
        "status": "PENDING",
        "originTransferId": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84",
        "reference": "Payment for invoice #12345",
        "clientTransactionId": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84"
      }
    ]
  }
}