GET api/orders/{orderID}/value

Get order values

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderID

Order IDs to filter on.

integer

Required

Body Parameters

None.

Response Information

Resource Description

OrderValues
NameDescriptionTypeAdditional information
OpenValue

Open value for an order

decimal number

None.

RejectionReason

Rejection reason for an order

string

None.

LastAmendmentType

Last instruction description for an order

enOrderAmendmentType

None.

Response Formats

application/json, text/json

Sample:
{
  "OpenValue": 250.0,
  "RejectionReason": "Please insert price",
  "LastAmendmentType": 3
}

application/xml, text/xml

Sample:
<OrderValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Order">
  <LastAmendmentType>Cancellation</LastAmendmentType>
  <OpenValue>250.0</OpenValue>
  <RejectionReason>Please insert price</RejectionReason>
</OrderValues>

Error Response Information

Resource Description

string

Error Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>