Aquanow
Latest
Latest
  • About Aquanow
    • Introduction
  • Version differences
    • Latest vs Legacy
  • User Guide
    • Trading
      • Order Book
      • Submitting Orders
      • Order Types / Strategies
      • Trade Management
    • Automated Conversions
      • Autopilot
    • Deposits & Withdrawals
      • Deposits
      • Withdrawals
      • Balances
      • Transaction History
      • Approval Workflows
    • Account Management
      • CSV Exports
      • Address Management
      • IP Whitelisting
      • User List
  • Integration Guide
    • API Keys
      • Rate and API Key Limits
    • Authentication
    • Staging environment
    • Postman
    • Supported Assets and Tickers
    • Testnet and Faucet
  • API Endpoints | V1.0
    • Accounts API
      • Trade Credit Balances
      • Company Profile Configuration
        • Company profile settings
        • Accounts settings
        • Users settings
      • User Balances
      • API Keys
    • Transaction API
      • Get Transactions
      • Create Transactions
      • Transfers
      • Approvals
      • Get Withdrawal Fee Estimate
    • Executions API
      • GET or Query Orders
      • Trading Strategies
    • Market Data API
      • Authorized Market Data
  • API Endpoints | V2.0
    • Transaction API
      • Get Transactions
    • Executions API
      • GET or Query Orders
      • Trading Strategies
  • Webhooks
    • Subscribing to Webhooks
    • Transaction Webhook
  • Websockets
    • Introduction
    • Authenticated Websockets
      • Market Data Websocket
      • Reporting Websocket
  • Data Objects & Statuses
    • Websocket Objects
    • Transaction Objects
      • Approval Objects
      • Fee Estimate Objects
    • Accounts Objects
    • Executions Objects
      • Duration Order Objects
    • Market Data Objects
    • Statuses
  • FAQs and Misc. Information
    • FAQs
    • Misc. Information
Powered by GitBook
On this page
  1. API Endpoints | V1.0
  2. Accounts API
  3. Company Profile Configuration

Accounts settings

Contains the configuration of the parameters that apply to the accounts within a company profile.

PreviousCompany profile settingsNextUsers settings

Last updated 10 months ago

Gets/retrieves accounts configuration within a company profile

GET https://api.aquanow.io/users/v1/companyProfile/accounts

See response example for the information expected to be retrieved.

Name
Type
Description

accountId

String

Fetches the account provided. If no accountId provided, fetches all accountIds within a company profile

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a

Signature created using your API secret

x-nonce*

Number

1657731573930

Timestamp in millisecond

Returns an array of

{
  "data": {
    "accounts": [
      {
        "accountName": "accountName",
        "accountType": "credit",
        "allowBalanceTransfers": true,
        "accountId": "accountId",
        "creditLimitUsd": 1000,
        "enableCryptoSourceAddressWhitelist": false,
        "postTradeSettlements": {}
      },
      {
        "accountName": "accountName2",
        "accountType": "credit",
        "allowBalanceTransfers": true,
        "accountId": "accountId2",
        "creditLimitUsd": 10000,
        "enableCryptoSourceAddressWhitelist": false,
        "postTradeSettlements": {}
      }
    ]
  }
}

{
  "data": {
    "accounts": [
      {
        "accountName": "accountName",
        "accountType": "credit",
        "allowBalanceTransfers": true,
        "accountId": "accountId",
        "creditLimitUsd": 1000,
        "enableCryptoSourceAddressWhitelist": false,
        "postTradeSettlements": {}
      }
    ]
  }
}

{
    "message": "Could not find any accounts under user: company_user"
}

Returns an array of

CompanyProfileAccountsObject
CompanyProfileAccountsObject