Withdrawals
Authorizations
Body
accountIdstring · uuidOptionalExample: 
757a15e6-0b3c-44d6-9e60-f76c1dc35f34currencystringOptionalExample: 
USDquantitystringOptionalExample: 
The quantity to withdraw
100.00Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
post
/v1/withdrawalsPOST /api/v1/withdrawals HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 605
{
  "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",
    "status": "PENDING"
  }
}{
  "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-11-03T15:09:12.933Z",
  "completedAt": "2025-11-03T15:09:12.933Z"
}Last updated