POST api/odrinvdtl
Request Information
URI Parameters
None.
Body Parameters
AppOrderInvDtl| Name | Description | Type | Additional information |
|---|---|---|---|
| PrdId | Collection of integer |
None. |
|
| OrderId | integer |
None. |
|
| CustId | integer |
None. |
|
| InvImg | string |
None. |
|
| InvNo | string |
None. |
|
| InvDt | string |
None. |
|
| InvAmt | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PrdId": [
1,
2
],
"OrderId": 1,
"CustId": 2,
"InvImg": "sample string 3",
"InvNo": "sample string 4",
"InvDt": "sample string 5",
"InvAmt": "sample string 6"
}
application/xml, text/xml
Sample:
<OrderController.AppOrderInvDtl xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SatcapIndiaWebAPI.Controllers">
<CustId>2</CustId>
<InvAmt>sample string 6</InvAmt>
<InvDt>sample string 5</InvDt>
<InvImg>sample string 3</InvImg>
<InvNo>sample string 4</InvNo>
<OrderId>1</OrderId>
<PrdId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</PrdId>
</OrderController.AppOrderInvDtl>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>