Transfers
When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.
When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.
Filter by transfer ID
Filter by source account ID
Filter by source customer ID
Filter by destination account id
Filter by destination customer id
Filter by transfer currency
USDCFilter by client reference ID
EXT12345Filter by status
Successful response
The token of the last item in the response
9fe51492-fc0f-483c-ab85-391e4a3a4335The total number of items in the entire filtered data set
1Validation Error
Unauthorized
Insufficient Privileges
Client error
Server error
GET /api/v1/transfers HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"after": "9fe51492-fc0f-483c-ab85-391e4a3a4335",
"totalCount": "1",
"items": [
{
"transactionType": "WITHDRAWAL",
"transactionStatus": "PROCESSING",
"transferId": "a9d4b657-0b32-425d-b927-7ad5a4593bc4",
"sourceAccountId": "a645bd39-41a7-4a13-8c0a-ff38571ddeda",
"sourceCustomerId": "39b83120-a80f-4bd9-8469-7d5bcaa055af",
"beneficiaryAccountId": "635b8c14-c6a9-4838-b9a1-bc7ddc29a086",
"beneficiaryId": "bf22f3c9-c5f6-4815-a6a6-9b999612b713",
"transferQuantity": "100.00",
"transferCurrency": "USD",
"transferReason": "text",
"externalReferenceId": "text",
"requestedAt": "2026-02-19T18:44:05Z",
"completedAt": "2026-02-19T18:45:00Z"
}
]
}The transfer ID
faf8e68c-2cd5-43a6-b8e1-112535b7de00Successful response
WITHDRAWALPossible values: PROCESSINGPossible values: a9d4b657-0b32-425d-b927-7ad5a4593bc4a645bd39-41a7-4a13-8c0a-ff38571ddeda39b83120-a80f-4bd9-8469-7d5bcaa055af635b8c14-c6a9-4838-b9a1-bc7ddc29a086bf22f3c9-c5f6-4815-a6a6-9b999612b713100.00USDClient-provided reference string to be stored with the transfer record
2026-02-19T18:44:05Z2026-02-19T18:45:00ZValidation Error
Unauthorized
Insufficient Privileges
Not Found
Client error
Server error
GET /api/v1/transfers/{transferId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"transactionType": "WITHDRAWAL",
"transactionStatus": "PROCESSING",
"transferId": "a9d4b657-0b32-425d-b927-7ad5a4593bc4",
"sourceAccountId": "a645bd39-41a7-4a13-8c0a-ff38571ddeda",
"sourceCustomerId": "39b83120-a80f-4bd9-8469-7d5bcaa055af",
"beneficiaryAccountId": "635b8c14-c6a9-4838-b9a1-bc7ddc29a086",
"beneficiaryId": "bf22f3c9-c5f6-4815-a6a6-9b999612b713",
"transferQuantity": "100.00",
"transferCurrency": "USD",
"transferReason": "text",
"externalReferenceId": "text",
"requestedAt": "2026-02-19T18:44:05Z",
"completedAt": "2026-02-19T18:45:00Z"
}A client-supplied unique identifier for this request, used for safely retrying and deduplicating operations. When the same X-Request-Id is sent with multiple identical requests within a defined time window, the server treats them as the same logical operation and will not perform the side effect more than once. Instead, it will return the original result associated with that identifier, if available. The client should generate a collision-resistant value (for example, a UUID) and reuse it only when retrying the same operation.
a645bd39-41a7-4a13-8c0a-ff38571ddeda39b83120-a80f-4bd9-8469-7d5bcaa055af635b8c14-c6a9-4838-b9a1-bc7ddc29a086bf22f3c9-c5f6-4815-a6a6-9b999612b713100.00USDClient-provided reference string to be stored with the transfer record
Successful response
Validation Error
Unauthorized
Insufficient Privileges
Duplicate request error
Client error
Server error
POST /api/v1/transfers HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 339
{
"sourceAccountId": "a645bd39-41a7-4a13-8c0a-ff38571ddeda",
"sourceCustomerId": "39b83120-a80f-4bd9-8469-7d5bcaa055af",
"beneficiaryAccountId": "635b8c14-c6a9-4838-b9a1-bc7ddc29a086",
"beneficiaryId": "bf22f3c9-c5f6-4815-a6a6-9b999612b713",
"transferQuantity": "100.00",
"transferCurrency": "USD",
"transferReason": "text",
"externalReferenceId": "text"
}{
"transactionType": "WITHDRAWAL",
"transactionStatus": "PROCESSING",
"transferId": "a9d4b657-0b32-425d-b927-7ad5a4593bc4",
"sourceAccountId": "a645bd39-41a7-4a13-8c0a-ff38571ddeda",
"sourceCustomerId": "39b83120-a80f-4bd9-8469-7d5bcaa055af",
"beneficiaryAccountId": "635b8c14-c6a9-4838-b9a1-bc7ddc29a086",
"beneficiaryId": "bf22f3c9-c5f6-4815-a6a6-9b999612b713",
"transferQuantity": "100.00",
"transferCurrency": "USD",
"transferReason": "text",
"externalReferenceId": "text",
"requestedAt": "2026-02-19T18:44:05Z",
"completedAt": "2026-02-19T18:45:00Z"
}Last updated