POST api/OrderCustomer/ProcessPartialPayment
Request Information
URI Parameters
None.
Body Parameters
PartialPaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderCustomerId | globally unique identifier |
None. |
|
| Amount | decimal number |
None. |
|
| PaymentTime | date |
None. |
|
| PaymentMethod | integer |
None. |
|
| PaymentNote | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderCustomerId": "5eda1951-f7a5-4ce5-8d4b-492990b2188d",
"Amount": 2.0,
"PaymentTime": "2026-04-21T17:17:44.8984636+07:00",
"PaymentMethod": 4,
"PaymentNote": "sample string 5"
}
application/xml, text/xml
Sample:
<PartialPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.OrderCustomer"> <Amount>2</Amount> <OrderCustomerId>5eda1951-f7a5-4ce5-8d4b-492990b2188d</OrderCustomerId> <PaymentMethod>4</PaymentMethod> <PaymentNote>sample string 5</PaymentNote> <PaymentTime>2026-04-21T17:17:44.8984636+07:00</PaymentTime> </PartialPaymentRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.