POST api/PathInfotech/PathOrderData
Request Information
URI Parameters
None.
Body Parameters
Z_PathOrderLine| Name | Description | Type | Additional information |
|---|---|---|---|
| SORefNo | string |
None. |
|
| CustomerCode | string |
None. |
|
| OrderRemarks | string |
None. |
|
| OrderDetails | Collection of Path_OrderLine |
None. |
Request Formats
application/json, text/json
Sample:
{
"SORefNo": "sample string 1",
"CustomerCode": "sample string 2",
"OrderRemarks": "sample string 3",
"OrderDetails": [
{
"ItemCode": "sample string 1",
"Qty": 2.0
},
{
"ItemCode": "sample string 1",
"Qty": 2.0
}
]
}
application/xml, text/xml
Sample:
<Z_PathOrderLine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RREL.Data.Models">
<CustomerCode>sample string 2</CustomerCode>
<OrderDetails>
<Path_OrderLine>
<ItemCode>sample string 1</ItemCode>
<Qty>2</Qty>
</Path_OrderLine>
<Path_OrderLine>
<ItemCode>sample string 1</ItemCode>
<Qty>2</Qty>
</Path_OrderLine>
</OrderDetails>
<OrderRemarks>sample string 3</OrderRemarks>
<SORefNo>sample string 1</SORefNo>
</Z_PathOrderLine>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |