POST api/v1/ReceiveSave
Request Information
URI Parameters
None.
Body Parameters
ReceivedInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CompID | integer |
None. |
|
| LocID | integer |
None. |
|
| InvoiceID | integer |
None. |
|
| json | string |
None. |
|
| UserID | integer |
None. |
|
| Result | integer |
None. |
|
| MobileNo | string |
None. |
|
| CustName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompID": 1,
"LocID": 2,
"InvoiceID": 3,
"json": "sample string 4",
"UserID": 5,
"Result": 6,
"MobileNo": "sample string 7",
"CustName": "sample string 8"
}
application/xml, text/xml
Sample:
<ReceivedInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>1</CompID> <CustName>sample string 8</CustName> <InvoiceID>3</InvoiceID> <LocID>2</LocID> <MobileNo>sample string 7</MobileNo> <Result>6</Result> <UserID>5</UserID> <json>sample string 4</json> </ReceivedInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
RcvdSaveModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 1
}
application/xml, text/xml
Sample:
<RcvdSaveModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Result>1</Result> </RcvdSaveModel>