POST api/v1/PaymentModeSave
Request Information
URI Parameters
None.
Body Parameters
PaymentRcvdSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ID | integer |
None. |
|
| PaymentDesc | string |
None. |
|
| TallyText | string |
None. |
|
| Gateway | string |
None. |
|
| LocID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ID": 2,
"PaymentDesc": "sample string 3",
"TallyText": "sample string 4",
"Gateway": "sample string 5",
"LocID": 6
}
application/xml, text/xml
Sample:
<PaymentRcvdSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Gateway>sample string 5</Gateway> <ID>2</ID> <LocID>6</LocID> <Mode>sample string 1</Mode> <PaymentDesc>sample string 3</PaymentDesc> <TallyText>sample string 4</TallyText> </PaymentRcvdSaveInput>
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. |