POST api/ClientPay/SaveData
Request Information
URI Parameters
None.
Body Parameters
Collection of Pay| Name | Description | Type | Additional information |
|---|---|---|---|
| internalID | string |
None. |
|
| documentType | string |
None. |
|
| site | string |
None. |
|
| ClientID | string |
None. |
|
| totalAmount | decimal number |
None. |
|
| totalPaid | decimal number |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"internalID": "sample string 1",
"documentType": "sample string 2",
"site": "sample string 3",
"ClientID": "sample string 4",
"totalAmount": 5.0,
"totalPaid": 6.0,
"Remarks": "sample string 7"
},
{
"internalID": "sample string 1",
"documentType": "sample string 2",
"site": "sample string 3",
"ClientID": "sample string 4",
"totalAmount": 5.0,
"totalPaid": 6.0,
"Remarks": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfPay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZamzamAPI.Models">
<Pay>
<ClientID>sample string 4</ClientID>
<Remarks>sample string 7</Remarks>
<documentType>sample string 2</documentType>
<internalID>sample string 1</internalID>
<site>sample string 3</site>
<totalAmount>5</totalAmount>
<totalPaid>6</totalPaid>
</Pay>
<Pay>
<ClientID>sample string 4</ClientID>
<Remarks>sample string 7</Remarks>
<documentType>sample string 2</documentType>
<internalID>sample string 1</internalID>
<site>sample string 3</site>
<totalAmount>5</totalAmount>
<totalPaid>6</totalPaid>
</Pay>
</ArrayOfPay>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |