Aquanow
Legacy
Legacy
  • 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
      • User Balances
      • API Keys
    • Transaction API
      • Get Transactions
      • Create Transactions
      • Approvals API
      • 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
  • RFQ
  • Get an RFQ quote
  • Create an RFQ quote
  • Execute an RFQ Quote
  • Expire an RFQ Quote
  • Market
  • Create a market order
  • TWAP
  • Create an order
  • Cancel a pre-existing TWAP order.
  • FOK
  • Endpoint to initiate a FOK request to Aquanow.
  • LIMIT/GTC/GTD
  • Endpoint to initiate an LIMIT/GTC/GTD request to Aquanow.
  • Cancel a pre-existing LIMIT/GTC/GTD order.
  1. API Endpoints | V1.0
  2. Executions API

Trading Strategies

PreviousGET or Query OrdersNextMarket Data API

Last updated 11 months ago

Please contact to enable additional strategies.

RFQ

RFQ orders allow users to make a request for a quote, then decide if they wish to execute that quote.

Get an RFQ quote

GET https://api.aquanow.io/trades/v1/getQuote

getQuote endpoint allows users to get an RFQ quote from Aquanow, and receive quoteId and price that is valid during the lifetime of the RFQ.

This endpoint is not executable and can only be used as a means of pricing your order.

To view example requests for this endpoint, visit Aquanow's documentation.

Query Parameters

Name
Type
Description

ticker*

String

e.g., BTC-USD

Currency pair

tradeSide*

String

"buy" or "sell"

deliverQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

receiveQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the received currency is BTC. If tradeSide is sell, the received currency is USD.

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

32c92460f65cbb78d0eaf9a4361fb6b0a2bb8bb4c40f531e9974a0afc12d9a328b5ff621a544d242ee9ba1dfa799c85a

Signature created using your API secret

x-nonce*

Number

1657731573930

Timestamp in millisecond

{
  "type": "rfqGetQuoteAck",
  "payload": {
    "quoteId": "b9593fd0-db2d-4e22-8c6b-2e9d5a3226f7",
    "quoteTime": 1657595867140,
    "expireTime": 1657595917140,
    "symbol": "BTC-USD",
    "side": "buy",
    "receiveCurrency": "BTC",
    "receiveQuantity": 0.0495602273,
    "deliverCurrency": "USD",
    "deliverQuantity": 1000,
    "price": 20177.47
  }
}

Create an RFQ quote

POST https://api.aquanow.io/trades/v1/createQuote

createQuote endpoint allows user to initiate an RFQ request to Aquanow and receive a quoteId and price that is valid during the lifetime of the RFQ.

NOTE: Either deliverQuantity or receiveQuantity must be specified. If both are specified, receiveQuantity will be considered for sell orders, and deliverQuantity will be considered for buy orders.

If order is not filled, request returns a 200 response with receiveQuantity and deliverQuantity set to 0.

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

32c92460f65cbb78d0eaf9a4361fb6b0a2bb8bb4c40f531e9974a0afc12d9a328b5ff621a544d242ee9ba1dfa799c85a

Signature created using your API secret

x-nonce*

Number

1657731573930

Timestamp in millisecond

Request Body

Name
Type
Description

ticker*

String

e.g., BTC-USD

Currency pair

tradeSide*

String

"buy" or "sell"

deliverQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

receiveQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the received currency is BTC. If tradeSide is sell, the received currency is USD.

usernameRef

String

A new reference string for sub-accounts. Must be less than 64 characters, cannot contain special characters.

{
  "type": "rfqCreateQuoteAck",
  "payload": {
    "quoteId": "474a8cb0-0484-46d8-909e-1c1a65cd200d",
    "quoteTime": 1628112496153,
    "expireTime": 1628112508153,
    "symbol": "ETH-CAD",
    "side": "buy",
    "receiveCurrency": "ETH",
    "receiveQuantity": 0.1,
    "deliverCurrency": "CAD",
    "deliverQuantity": 340.45,
    "price": 3404.5
  }
}
{
  "type": "rfqCreateQuoteAck",
  "payload": {
    "quoteId": "be267600-edd8-4b61-8b85-528223d61e17",
    "quoteTime": 1628114160054,
    "expireTime": 1628114172054,
    "symbol": "ETH-CAD",
    "side": "buy",
    "receiveCurrency": "ETH",
    "receiveQuantity": 0.0292817194,
    "deliverCurrency": "CAD",
    "deliverQuantity": 100,
    "price": 3415.1
  }
}
{
  "type": "rfqCreateQuoteAck",
  "error": {
    "message": "Aqua: Insufficient funds"
  },
  "payload": {
    "quoteId": "33e0a6d6-f7be-4c6b-864e-a28510a3c474"
  }
}
{
    "message": "Invalid tradeSide: buying"
}
{
    "message": "Invalid ticker: ETH-CADD"
}
{
    "message": "Trade size must be bigger than minimum size 1e-7. You submitted: 1e-8"
}
{
    "message": "Access Denied"
}
{
    "message": "You don't have permission to do this, contact info@aquanow.io if you have questions"
}

Execute an RFQ Quote

POST https://api.aquanow.io/trades/v1/executeQuote

executeQuote endpoint allows users to execute a trade with a specified quoteId with the symbol, trade side and size within the time to live (TTL) of the request associated with the quoteId.

NOTE: The quote must be executed BEFORE the time expired. The TTL of a quote is 8 seconds by default. If you wish to increase the expiry time, please contact Aquanow for support.

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

1618307861949

Timestamp in millisecond

Request Body

Name
Type
Description

quoteId*

String

quoteId to be executed

{
  "type": "rfqExecuteQuoteAck",
  "payload": {
    "quoteId": "205feb16-0135-401b-84ce-a27e12d42453"
  }
}
{
    "message": "The quote has already expired"
}
{
    "message": "Access Denied"
}

Expire an RFQ Quote

PUT https://api.aquanow.io/trades/v1/expireQuote

expireQuote endpoint allows users to expire a quote with a specified quoteId within the time to live (TTL) of the request associated with the quoteId.

NOTE: The quote must be executed BEFORE the time expired. The TTL of a quote is 8 seconds by default. If you wish to increase the expiry time, please contact Aquanow for support.

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

Content-Type*

String

application/json

Request Body

Name
Type
Description

quoteId*

String

quoteId to be expired

{
  "type": "rfqExpireQuoteAck",
  "payload": {
    "quoteId": "6d187635-27df-4175-8b23-f1f0ec84907e"
  }
}
{
  "message": "quoteId: 6d187635-27df-4175-8b23-f1f0ec84907e has alreaady been processed"
}

Market

Aquanow's Market execution strategy is utilized to perform instant executions.

Create a market order

POST https://api.aquanow.io/trades/v1/market

Note: Either deliverQuantity or receiveQuantity must be specified. If both are specified, receiveQuantity will be considered for sell orders, and deliverQuantity will be considered for buy orders.

If order is not filled, the request will return a 200 response, with receiveQuantity and deliverQuantity set to 0.

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

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

ticker*

String

e.g., BTC-USD

Pair to be traded

tradeSide*

String

"buy" or "sell" order

deliverQuantity*

Number

NOTE: Specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, then the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

receiveQuantity*

Number

NOTE: Specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide. For example, if ticker is BTC-USD and tradeSide is buy, then the received currency is BTC. If tradeSide is sell, the received currency is USD.

usernameRef

String

A new reference string for sub-accounts.

Must be less than 64 characters, cannot contain special characters.

{
  "type": "marketOrderSubmitAck",
  "payload": {
    "orderId": "105bb0a7-fdb0-4bde-a367-d47787951349",
    "receiveCurrency": "USD",
    "receiveQuantity": 19.6206,
    "deliverCurrency": "BTC",
    "deliverQuantity": 0.002,
    "fee": 0.0392412
  }
}
{
  "type": "marketOrderSubmitAck",
  "payload": {
    "orderId": "bd94982b-558a-4708-81fa-acbdae3073d0",
    "receiveCurrency": "BTC",
    "receiveQuantity": 0.048,
    "deliverCurrency": "USD",
    "deliverQuantity": 469.6272,
    "fee": 0.000096
  }
}
{
  "type": "marketOrderSubmitAck",
  "payload": {
    "orderId": "5ecfc1b2-cb8b-4a9c-8f95-0cf3081dc704",
    "receiveCurrency": "USD",
    "receiveQuantity": 0,
    "deliverCurrency": "BTC",
    "deliverQuantity": 0,
    "fee": 0
  }
}
{
    "message": "Either deliverQuantity or receiveQuantity must be specified, or must be bigger than 0"
}
{
    "message": "Invalid ticker: BTC-USDD"
}
{
    "message": "Invalid tradeSide: selling"
}
{
    "message": "User not authorized for MARKET"
}
{
    "message": "Access Denied"
}
{
  "type": "marketOrderSubmitAck",
  "payload": {
    "orderId": "5ecfc1b5-cb8b-4a9c-8f95-0cf3081dc704",
    "receiveCurrency": "USD",
    "receiveQuantity": 0,
    "deliverCurrency": "BTC",
    "deliverQuantity": 0,
    "fee": 0
  }
}
{
    "type": "marketOrderSubmitAck",
    "payload": {
        "orderId": "7c98627-488y-4ce7-acde-2de3f887q0d3",
        "receiveCurrency": "USD",
        "receiveQuantity": 1e-10,
        "deliverCurrency": "USDT",
        "deliverQuantity": 1e-10,
        "fee": 0
    }
}

TWAP

Aquanow's execution algorithm.

TWAP

Time-Weighted Average Price (TWAP) is used when buying or selling large amounts of digital assets over time, with the ability to choose the amount being sold and its time period.

Create an order

POST https://api.aquanow.io/trades/v1/order

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*

String

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

strategy*

String

Trading strategy to be executed

NOTE: Currently, we only support TWAP strategies.

ticker*

String

Strategy pair to be traded (e.g., BTC-USD)

tradeSide*

String

"buy" or "sell" order

tradePrice*

Number

Price of the coin on purchase

tradeSize*

Number

Size or quantity of order

tradeDuration*

Number

NOTE: only required if strategy is TWAP.

Duration is in number of seconds. Minimum duration is 300 seconds.

usernameRef

String

A new reference string for subaccounts. Must be less than 64 characters and cannot contain special characters.

{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "6215758c-38dc-4a9f-9647-023ef14f20bb"
  }
}
{
    "type": "parentOrderSubmitAck",
    "error": {
        "message": "Aqua: Insufficient funds"
    },
    "payload": {
        "orderId": "a731b28f-5bbc-4638-a6af-ec5bd556b379"
    }
}
{
    "message": "Invalid tradeSide: buying"
}
{
    "message": "Invalid ticker: BTC-USDD"
}
{
    "message": "Trade size is smaller than minimum size 0.002"
}
{
    "message": "Access Denied"
}
{
    "message": "User not authorized for TWAP"
}

Cancel a pre-existing TWAP order.

DELETE https://api.aquanow.io/trades/v1/order

Query Parameters

Name
Type
Description

orderId*

String

orderId to be canceled

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

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

{
  "type": "parentOrderCancelAck",
  "payload": {
    "orderId": "7b323a75-5457-450f-9bf0-46fa6f20ff4e"
  }
}
{
    "message": "You request is invalid, contact info@aquanow.io if you have questions"
}

FOK

Fill or Kill order strategy will execute the entire order immediately at the market or specified price, otherwise it will cancelled if not filled.

Endpoint to initiate a FOK request to Aquanow.

POST https://api.aquanow.io/trades/v1/order

NOTE: Either deliverQuantity, receiveQuantity must be specified. If both are specified, receiveQuantity will be considered for sell orders, and deliverQuantity will be considered for buy orders.

If order is not filled, the request will return a 200 response with a Cancelled message.

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

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

strategy*

String

"FOK"

ticker*

String

e.g., BTC-CAD

Currency pair

tradeSide*

String

"buy" or "sell"

receiveQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the received currency is BTC. If tradeSide is sell, the received currency is USD.

deliverQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

usernameRef

String

A new reference string for sub-accounts.

Must be less than 64 characters, cannot contain special characters.

tradePrice*

Number

Trade price of ticker symbol

{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "0bea14b3-a510-437c-a805-73p15f654cad",
    "receiveCurrency": "BTC",
    "receiveQuantity": 0.02,
    "deliverCurrency": "USD",
    "deliverQuantity": 881.7,
    "fee": 0,
    "tradeTime": 1704389622301,
    "symbol": "BTC-USD",
    "tradeStatus": "COMPLETE",
    "price": 44085
  }
}
{
    "type": "parentOrderSubmitAck",
    "error": {
        "message": "Aqua: Insufficient funds"
    },
    "payload": {
        "orderId": "275661f3-beb1-4464-bf21-af0789632438",
        "receiveCurrency": "BTC",
        "receiveQuantity": 0,
        "deliverCurrency": "USD",
        "deliverQuantity": 0,
        "fee": 0,
        "tradeTime": 1704391973378,
        "symbol": "BTC-USD",
        "tradeStatus": "COMPLETE",
        "price": 45065.18509321
    }
}
{
    "type": "parentOrderSubmitAck",
    "error": {
        "message": "Cancelled - Price not marketable"
    },
    "payload": {
        "orderId": "50154c07-04d8-49ef-8a4c-392aa7014346",
        "receiveCurrency": "BTC",
        "receiveQuantity": 0,
        "deliverCurrency": "USD",
        "deliverQuantity": 0,
        "fee": 0,
        "tradeTime": 1704391943590,
        "symbol": "BTC-USD",
        "tradeStatus": "CANCELLED",
        "price": 44073.3
    }
}
{
    "message": "data/tradeSide must be equal to one of the allowed values"
}
{
    "message": "provide at least one baseQuantity and quoteQuantity to be non-zero"
}
{
    "message": "User is not authorized to access this resource with an explicit deny"
}
{
    "message": "User not authorized for FOK"
}

LIMIT/GTC/GTD

Aquanow's duration order algorithms with a price limit.

Orders can be completed immediately depending on the specified priceLimit, quantity and the market. Incomplete pre-existing orders expire depending on the strategy.

Duration Order Algorithms

LIMIT

LIMIT orders create a pre-existing order, available for up to 24 hours.

GTC

Good Till Cancel (GTC) orders create a pre-existing order, available for up to 90 days.

GTD

Good Till Date (GTD) orders create a pre-existing order, available until a specified expirationTime date (max. 90 days).

Endpoint to initiate an LIMIT/GTC/GTD request to Aquanow.

POST https://api.aquanow.io/trades/v1/order

NOTE: Either deliverQuantity or receiveQuantity must be specified. If both are specified, receiveQuantity will be considered for sell orders, and deliverQuantity will be considered for buy orders.

If order is not filled, the request will return a 200 response with receiveQuantity and deliverQuantity set to 0.

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

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

strategy*

String

"LIMIT", "GTC" or "GTD"

ticker*

String

e.g., BTC-CAD

Currency pair

tradeSide*

String

"buy" or "sell"

priceLimit*

Number

Limit price of a ticker symbol, determined by tradeSide and deliverQuantity/receiveQuantity

deliverQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency delivered by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, then the delivered currency is USD. If tradeSide is sell, the delivered currency is BTC.

receiveQuantity*

Number

NOTE: specify either deliverQuantity or receiveQuantity.

Quantity of currency received by user based on the ticker and tradeSide.

For example, if ticker is BTC-USD and tradeSide is buy, then the received currency is BTC. If tradeSide is sell, the received currency is USD.

expirationTime*

Number

NOTE: only required for GTD orders.

e.g., 1669972404350

Expiration time in milliseconds of when the pre-existing order will expire. Expiration time must be within 90 days of order creation.

usernameRef

String

A new reference string for sub-accounts. Must be less than 64 characters, cannot contain special characters.

{
  "type": "limitOrderAck",
  "payload": {
    "quoteId": "5cecaa55-e91a-4c12-9af4-756c9f3630ea",
    "quoteTime": 1669072974783,
    "expireTime": 1669159374783,
    "ticker": "BTC-USD",
    "tradeSide": "buy",
    "receiveCurrency": "BTC",
    "receiveQuantity": 0.048,
    "deliverCurrency": "USD",
    "deliverQuantity": 758.208,
    "price": 15796
  }
}
{
  "type": "limitOrderAck",
  "payload": {
    "quoteId": "7202456e-36c6-44a6-8579-a2e86808deb0",
    "quoteTime": 1669072984056,
    "expireTime": 1669159384056,
    "ticker": "BTC-USD",
    "tradeSide": "sell",
    "receiveCurrency": "USD",
    "receiveQuantity": 805.44,
    "deliverCurrency": "BTC",
    "deliverQuantity": 0.048,
    "price": 16780
  }
}
{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "051065f6-0ad6-4ea6-8f08-85263bca42bc"
  }
}
{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "d0386efb-a72f-4ee0-b40f-552008f41c98"
  }
}
{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "bd0a5ce3-4437-4492-9942-8b1dcffb9227"
  }
}
{
  "type": "parentOrderSubmitAck",
  "payload": {
    "orderId": "b50caa7e-92b0-408c-b68a-fe25822bc4b2"
  }
}
{
    "type": "limitOrderAck",
    "error": {
        "message": "Aqua: Insufficient funds"
    },
    "payload": {
        "orderId": "a731b28f-5bbc-4638-a6af-ec5bd556b379"
    }
}
{
    "message": "expirationTime should be within 90 days from now: 1869972405009"
}
{
    "message": "data must have required property 'expirationTime'"
}
{
    "message": "data/ticker must be equal to one of the allowed values"
}
{
    "message": "data/tradeSide must be equal to one of the allowed values"
}
{
    "message": "User not authorized for LIMIT"
}
{
    "message": "Trade size must be bigger than minimum size 1e-7. You submitted: 1e-9"
}
{
    "message": "Access Denied"
}

Cancel a pre-existing LIMIT/GTC/GTD order.

DELETE https://api.aquanow.io/trades/v1/order

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

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

Name
Type
Description

orderId*

String

orderId to be canceled

{
    "type": "parentOrderCancelAck",
    "payload": { 
        "orderId": "7b323a75-5457-450f-9bf0-46fa6f20ff4e"
    }
}
{
    "message": "You request is invalid, contact info@aquanow.io if you have questions"
}

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

Returns an .

To view example requests for this endpoint, visit Aquanow's documentation.

Returns an .

support@aquanow.io
Postman
ExecutionsObject
Postman
ExecutionsObject
ExecutionsObject
Postman
ExecutionsObject
Postman
ExecutionsObject
Postman
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
Postman
ExecutionsObject
Postman
ExecutionsObject
Postman
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
Postman
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject
Postman
ExecutionsObject
ExecutionsObject
ExecutionsObject
ExecutionsObject