Configuration
Retrieve account configuration details.
Authorizations
Path parameters
accountIdstring · uuidRequired
The account ID
Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/accounts/{accountId}/configuration HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"accountId": "123e4567-e89b-12d3-a456-426614174000",
"accountStatus": "ACTIVE",
"creditLimit": "40000",
"accountType": "CREDIT",
"tradeStrategyEnablement": [
"RFQ"
],
"pairEnablement": [
"BTC-USD"
],
"depositBankInstructions": [
{
"currency": "USD",
"beneficiaryType": "CORPORATE",
"beneficiaryLegalName": "Aquanow Inc",
"beneficiaryAddress": {
"addressLine1": "123 Main Street",
"addressLine2": "Suite 500",
"city": "Toronto",
"region": "Ontario",
"country": "CA",
"postalCode": "A1A1A1"
},
"beneficiaryBankName": "Royal Bank of Canada",
"beneficiaryBankAddress": {
"addressLine1": "123 Main Street",
"addressLine2": "Suite 500",
"city": "Toronto",
"region": "Ontario",
"country": "CA",
"postalCode": "A1A1A1"
},
"beneficiaryBankBic": "RBCACATT",
"routingCode": "00300001",
"beneficiaryAccountNumber": "CA123456789",
"beneficiaryBankMemo": "FFC 100000031321 Acme Corporation Ltd",
"intermediaryBankName": "Citibank N.A.",
"intermediaryBankAddress": {
"addressLine1": "123 Main Street",
"addressLine2": "Suite 500",
"city": "Toronto",
"region": "Ontario",
"country": "CA",
"postalCode": "A1A1A1"
},
"intermediaryBankBic": "CITIUS33",
"intermediaryAccountNumber": "1234567890"
}
],
"depositWallets": [
{
"asset": "ETH",
"network": "ERC20",
"address": "0x6BD140405426464d83ed0286217cc9B578Fe5555"
}
]
}
Last updated