POST api/Order/GetOrderInformation
Request Information
URI Parameters
None.
Body Parameters
OrderInfoRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
None. |
|
ShippingCompanyId | integer |
None. |
|
InternalProductId | string |
None. |
|
EstablishmentId | integer |
None. |
|
Quantity | integer |
None. |
|
UnitAmount | decimal number |
None. |
|
TotalAmount | decimal number |
None. |
|
DeliveryZipCode | string |
None. |
|
DeliveryAddress | string |
None. |
|
DeliveryAddressNumber | integer |
None. |
|
DeliveryAddressComp | string |
None. |
|
DeliveryNeighborhood | string |
None. |
|
DeliveryCity | string |
None. |
|
DeliveryState | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerId": 1, "ShippingCompanyId": 2, "InternalProductId": "sample string 3", "EstablishmentId": 4, "Quantity": 5, "UnitAmount": 6.1, "TotalAmount": 7.1, "DeliveryZipCode": "sample string 8", "DeliveryAddress": "sample string 9", "DeliveryAddressNumber": 10, "DeliveryAddressComp": "sample string 11", "DeliveryNeighborhood": "sample string 12", "DeliveryCity": "sample string 13", "DeliveryState": "sample string 14" }
application/xml, text/xml
Sample:
<OrderInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SND.SNDIntegrator.ERP.Business"> <CustomerId>1</CustomerId> <DeliveryAddress>sample string 9</DeliveryAddress> <DeliveryAddressComp>sample string 11</DeliveryAddressComp> <DeliveryAddressNumber>10</DeliveryAddressNumber> <DeliveryCity>sample string 13</DeliveryCity> <DeliveryNeighborhood>sample string 12</DeliveryNeighborhood> <DeliveryState>sample string 14</DeliveryState> <DeliveryZipCode>sample string 8</DeliveryZipCode> <EstablishmentId>4</EstablishmentId> <InternalProductId>sample string 3</InternalProductId> <Quantity>5</Quantity> <ShippingCompanyId>2</ShippingCompanyId> <TotalAmount>7.1</TotalAmount> <UnitAmount>6.1</UnitAmount> </OrderInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.