Company profile settings

Contains the configuration of the parameters that apply to the entire company profile.

Gets/retrieves company profile configuration

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

See response example for the information expected to be retrieved.

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 a CompanyProfileObject

{
    "data": {
        "companyProfile": {
          "companyProfileName": "company_user",
          "isOnboard": true,
          "profileType": "companyProfile",
          "companyProfileEmail": "company@company.com",
          "availableOrderType": [
            {
              "orderType": "MARKET"
            }
          ],
          "emailNotificationList": {},
          "withdrawWhitelistingEnablement": false,
          "fiatWithdrawalList": {},
          "cryptoWithdrawalList": {},
          "ipWhitelist": []
        }
    }
}

Last updated