POST api/Order
Request Information
URI Parameters
None.
Body Parameters
OrderUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | integer |
None. |
|
| AssetType | string |
None. |
|
| SettlementDate | date |
None. |
|
| limitType | string |
None. |
|
| LimitPrice | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderID": 1,
"AssetType": "sample string 2",
"SettlementDate": "2025-12-05T21:59:07.2520635-06:00",
"limitType": "sample string 4",
"LimitPrice": 1.0
}
application/xml, text/xml
Sample:
<OrderUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiCompass.Models.ClassModel.Orders.View"> <AssetType>sample string 2</AssetType> <LimitPrice>1</LimitPrice> <OrderID>1</OrderID> <SettlementDate>2025-12-05T21:59:07.2520635-06:00</SettlementDate> <limitType>sample string 4</limitType> </OrderUpdate>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>