Withdrawals

Request withdrawal.

post
Authorizations
Body
accountIdstring · uuidOptionalExample: 757a15e6-0b3c-44d6-9e60-f76c1dc35f34
currencystringOptionalExample: USD
quantitystringOptional

The quantity to withdraw

Example: 100.00
Responses
200
Successful response
application/json
post
POST /api/v1/withdrawals HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 586

{
  "accountId": "757a15e6-0b3c-44d6-9e60-f76c1dc35f34",
  "currency": "USD",
  "quantity": "100.00",
  "bankAccount": {
    "bankAccountId": "123e4567-e89b-12d3-a456-426614174000",
    "bankName": "Acme Inc.",
    "currency": "USD",
    "accountNumber": "74720233",
    "bankAddress": {
      "streetNumber": "1001",
      "streetName": "Catharine Centers",
      "unit": "text",
      "poBox": "101",
      "postalCode": "V1K4J7",
      "city": "Port Jeramie",
      "state": "Delaware",
      "country": "Canada"
    },
    "swiftBicCode": "DEUTDEFFXXX",
    "beneficiaryName": "John Doe",
    "reference": "c0d0e81f-3da3-4398-9a9c-621054638ff9",
    "routingAbaNumber": "000417952",
    "IBAN": "DO60VGNB06660047237079916603"
  }
}
{
  "transactionType": "WITHDRAWAL",
  "status": "PROCESSING",
  "withdrawalId": "757a15e6-0b3c-44d6-9e60-f76c1dc35f34",
  "customerId": "757a15e6-0b3c-44d6-9e60-f76c1dc35f34",
  "accountId": "757a15e6-0b3c-44d6-9e60-f76c1dc35f34",
  "withdrawalCurrency": "text",
  "netWithdrawalQuantity": "100.00",
  "withdrawalFeeType": "FIXED",
  "withdrawalFeeRate": "100.00",
  "withdrawalFeeQuantity": "100.00",
  "withdrawalFeeCurrency": "text",
  "memo": "text",
  "grossWithdrawalQuantity": "100.00",
  "requestedAt": "2025-07-09T21:25:45.579Z",
  "completedAt": "2025-07-09T21:25:45.579Z"
}

Last updated