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": "dcbb814a-d334-4722-8646-63de6379e9a4",
"Amount": 2.0,
"PaymentTime": "2025-12-24T20:22:13.8229332+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>dcbb814a-d334-4722-8646-63de6379e9a4</OrderCustomerId> <PaymentMethod>4</PaymentMethod> <PaymentNote>sample string 5</PaymentNote> <PaymentTime>2025-12-24T20:22:13.8229332+07:00</PaymentTime> </PartialPaymentRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.