POST api/PanditReceivedPayment
Request Information
URI Parameters
None.
Body Parameters
PanditReceivedPaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | integer |
None. |
|
| PanditID | integer |
None. |
|
| PaymentType | string |
None. |
|
| PaymentMode | string |
None. |
|
| Amount | string |
None. |
|
| TransactionID | string |
None. |
|
| Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderID": 1,
"PanditID": 2,
"PaymentType": "sample string 3",
"PaymentMode": "sample string 4",
"Amount": "sample string 5",
"TransactionID": "sample string 6",
"Type": "sample string 7"
}
application/xml, text/xml
Sample:
<PanditReceivedPaymentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiNamo.Models"> <Amount>sample string 5</Amount> <OrderID>1</OrderID> <PanditID>2</PanditID> <PaymentMode>sample string 4</PaymentMode> <PaymentType>sample string 3</PaymentType> <TransactionID>sample string 6</TransactionID> <Type>sample string 7</Type> </PanditReceivedPaymentModel>
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. |