v1

latestOpenAPI 3.0.12026-07-24128351404.9 KB
Transfer

List all business transfer

Transfer funds between different business accounts.

get/open-api/v3/business/transfers

Query parameters

idstring

id

id

clientTransactionIdstring

Idempotency key provided by the client to ensure uniqueness of the transfer request

Idempotency key provided by the client to ensure uniqueness of the transfer request

currencystring

Currency code (ISO 4217), e.g. USD, EUR

Currency code (ISO 4217), e.g. USD, EUR

accountIdstring

The UUID of the account.

The UUID of the account.

walletIdstring

Source wallet ID.

Source wallet ID.

accountTransferTypestring

Type of account transfer. SAME_ACCOUNT: Transfer between accounts under the same user. NOT_SAME_ACCOUNT: Transfer between accounts of different users.

Type of account transfer. SAME_ACCOUNT: Transfer between accounts under the same user. NOT_SAME_ACCOUNT: Transfer between accounts of different users.

limitstring number

Limits the number of items to be returned.

Limits the number of items to be returned.

pagestring number

The number of pages to be displayed, starting from 1 as the first page.

The number of pages to be displayed, starting 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": [
      {
        "clientTransactionId": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84",
        "id": "1965738216225083393",
        "createTime": "1768010400000",
        "completedTime": "1768010400000",
        "from": {
          "id": "c6c6e3c4-6114-4f73-ac39-a4ca3d67a525",
          "transferId": "d84a92b5-8fb9-4052-80a3-1b1594ebcf84",
          "parentAccountId": "dddaef0d-265f-484f-9b42-60175aa6f80e",
          "accountId": "a78b8771-5329-4829-88ce-7db14b3b1d0b",
          "amount": "100",
          "rate": "1",
          "currency": "USD",
          "businessType": 1,
          "fees": [
            {
              "amount": "10",
              "currency": "USD"
            }
          ]
        },
        "to": {
          "id": "c6c6e3c4-6114-4f73-ac39-a4ca3d67a525",
          "parentAccountId": "dddaef0d-265f-484f-9b42-60175aa6f80e",
          "accountId": "c6c6e3c4-6114-4f73-ac39-a4ca3d67a524",
          "transferId": "c6c6e3c4-6114-4f73-ac39-a4ca3d67a5253",
          "amount": "100",
          "currency": "USD",
          "businessType": 1,
          "fees": [
            {
              "amount": "10",
              "currency": "USD"
            }
          ]
        },
        "status": "CLOSED"
      }
    ]
  }
}