Accounts settings

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

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.

NameTypeDescription

accountId

String

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

Headers

NameTypeDescription

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 CompanyProfileAccountsObject

{
  "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": {}
      }
    ]
  }
}

Last updated