PUT api/updatemakepaid
Request Information
URI Parameters
None.
Body Parameters
UpdateMakePaidRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| LoginId | string |
None. |
|
| PaidDate | date |
None. |
|
| PaymentAmount | decimal number |
None. |
|
| PaymentMode | string |
None. |
|
| TransactionNo | string |
None. |
|
| Payments | Collection of PaymentItems |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoginId": "sample string 1",
"PaidDate": "2026-08-11T19:45:27.1212352-07:00",
"PaymentAmount": 3.0,
"PaymentMode": "sample string 4",
"TransactionNo": "sample string 5",
"Payments": [
{
"OrderNo": "sample string 1",
"PaidAmount": 2.0,
"PaymentStatus": 3
},
{
"OrderNo": "sample string 1",
"PaidAmount": 2.0,
"PaymentStatus": 3
}
]
}
application/xml, text/xml
Sample:
<UpdateMakePaidRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webapp2.Controllers">
<LoginId>sample string 1</LoginId>
<PaidDate>2026-08-11T19:45:27.1212352-07:00</PaidDate>
<PaymentAmount>3</PaymentAmount>
<PaymentMode>sample string 4</PaymentMode>
<Payments>
<PaymentItems>
<OrderNo>sample string 1</OrderNo>
<PaidAmount>2</PaidAmount>
<PaymentStatus>3</PaymentStatus>
</PaymentItems>
<PaymentItems>
<OrderNo>sample string 1</OrderNo>
<PaidAmount>2</PaidAmount>
<PaymentStatus>3</PaymentStatus>
</PaymentItems>
</Payments>
<TransactionNo>sample string 5</TransactionNo>
</UpdateMakePaidRequest>
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.