Aquanow CAMS v1.0 (Updated)
  • Welcome
  • Security
    • OAuth2.0
    • API Limits
  • Pagination
  • Webhooks
    • Onboarding
    • Settlements
    • Reports
    • Order
    • Execution
    • Document
  • Market Data
    • Websocket
    • Rest API
      • OHLC
  • API reference
    • Customers
      • Docs
      • Configuration
    • Trades
      • RFQ
    • Orders
    • Executions
    • Settlements
    • Transactions
    • Accounts
      • Credit
      • Balances
      • Configuration
      • Performance
    • Instruments
      • Pairs
      • Assets
    • Custody
      • Balances
      • Allocation
    • Files
    • Webhook
  • Change Log
  • Specification
  • User Guide
    • View Customers
      • Customer Onboarding
      • Upload Onboarding Docs
      • View Customer Account Balances
      • Customer Risk Groups
    • View Customer Trade Activity
    • Manage Team Members
Powered by GitBook
On this page
  1. API reference
  2. Customers

Configuration

PreviousDocsNextTrades

Last updated 9 months ago

Get Customer Configuration

get

Retrieve configuration details for a customer by customer ID.

Authorizations
Path parameters
customerIdstring ยท uuidRequired

The customer ID of the customer

Responses
200
OK
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/customers/{customerId}/configuration HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "customerId": "123e4567-e89b-12d3-a456-426614174000",
  "referenceId": "text",
  "customerPreTradeRiskGroup": "LOW",
  "tradeCommissionSchedule": {
    "tiers": [
      {
        "tierThreshold": "0",
        "tierFeeRate": "35",
        "pair": "DEFAULT"
      }
    ]
  },
  "previousMonthTradeVolume": {
    "tradeVolume": "129098.14",
    "tradeVolumeCurrency": "USD"
  },
  "withdrawalFees": [
    {
      "asset": "BTC",
      "networkType": "Native",
      "feeType": "VARIABLE",
      "feeRate": "10"
    }
  ],
  "enabledTradePairs": [
    "BTC-USD",
    "ETH-USD"
  ],
  "enabledStrategies": [
    "RFQ"
  ],
  "withdrawalBank": {
    "bankName": "text",
    "bankAccount": "text"
  },
  "withdrawalAddresses": [
    {
      "asset": "ETH",
      "network": "ERC20",
      "address": "0x6BD140405426464d83ed0286217cc9B578Fe5555"
    }
  ]
}