POST api/PaymentReceipt/ReceivePayment
Request Information
URI Parameters
None.
Body Parameters
PaymentSettlementRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ReceiptId | integer |
None. |
|
| UserName | string |
None. |
|
| SubmittedTo | string |
None. |
|
| SubmittedToUserId | integer |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ReceiptId": 1,
"UserName": "sample string 2",
"SubmittedTo": "sample string 3",
"SubmittedToUserId": 1,
"Remark": "sample string 4"
}
application/xml, text/xml
Sample:
<PaymentSettlementRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebService.Models"> <ReceiptId>1</ReceiptId> <Remark>sample string 4</Remark> <SubmittedTo>sample string 3</SubmittedTo> <SubmittedToUserId>1</SubmittedToUserId> <UserName>sample string 2</UserName> </PaymentSettlementRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.