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": "3b680846-0b77-4a26-8c6e-c3ab9cf063c7",
"Amount": 2.0,
"PaymentTime": "2026-04-14T19:44:49.6886288+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>3b680846-0b77-4a26-8c6e-c3ab9cf063c7</OrderCustomerId> <PaymentMethod>4</PaymentMethod> <PaymentNote>sample string 5</PaymentNote> <PaymentTime>2026-04-14T19:44:49.6886288+07:00</PaymentTime> </PartialPaymentRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.