Verify Order Replacement
Verify an order modification before committing changes
Overview
This PUT endpoint enables you to verify an order replacement before using it to replace an existing order in AutoShares. This might be useful for ensuring that the user has properly constructed an order and prevent any issues related with defective orders.
There are six required parameters that must be provided in the request:
Authorization (header). This is the authorization token from the very first token request. The value of this header must have the following format:
Bearer BQ898r9fefi
(Bearer
+ 1 space + the token).API version (path). Unless necessary, leave it at "1.0".
Trading Account ID (path). This is the numeric ID of the trading account on which an existing order replacement must be verified.
orderId (path). This is the id of the order which parameter replacement must be verified. You can retrieve IDs of orders of a particular trading account using this API request.
modifyParams (body). This is a JSON file that contains the parameters that need to be modified in an existing order.
Optionally, you may add another header that will return localized error messages in the required language:
language. Possible values:
en-US
,ja-JP
,ru-RU
,zh-CN
,zh-TW
. For example:'language': 'ja-JP'
Here's the final template for this API request:
For orders that will only be verified by the API but not the execution venue (quick):
For orders that will be verified by the API and the execution venue too (slow):
Request Body
The body of this request represents the information that must verified before being replaced in an existing order. It must be sent in the JSON format with mandatory parameters about the order.
The first four parameters — ID, Quantity, Price, ExecutionInstructions, and Execution Instructions — are mandatory, while the remaining parameters should only be provided if necessary. Apart from these four parameters, the rest of the JSON should be constructed identically to the order placement JSON.
Order Modification Verification Sample
Response
In response to this request, you'll receive a JSON file confirming (or rejecting) that the order replacement has been properly constructed.
where:
Parameter | Description |
---|---|
IsSuccessful | This field indicates if the order replacement has been successfully executed. |
Commission | This is the total commission applicable to the order. |
Commissions | This is an array that breaks down the applicable commissions. |
Cost | This is the total cost of the order (including commission). |
NetCost | This is the cost of the order less commission. |
TotalCost | This is the gross commission applied to the order (including all other commissions). |
Quotes | This is the last batch of quotes for this security (includes the security's ticker symbol, its internal identifier in AutoShares, and the quote's timestamp). |
MarginChange | This is the amount by which the trading account margin requirements will be affected once this order is filled. |
Common Mistakes
Here are some of the common mistakes that developers make when attempting to verify an order replacement.
Requesting as a Non-Administrator
One of the most common mistakes that developers make when making this API request is to use the authorization token of a non-administrator. It's critical to understand that in order to be eligible for verifying order replacements, the requester must be an administrator. Otherwise you'll receive the 401 status code with the following message:
So be sure to use the authorization token generated with an administrator's credentials.
Providing an Incorrect Set of Parameters
Another common mistake made when sending this API request is failing to provide all mandatory parameters. Doing so will result in the 500 status code and the following error message:
The following article covers the syntax for this API request in detail.
Last updated