POST api/OrderCustomer/ProcessPartialPayment

Request Information

URI Parameters

None.

Body Parameters

PartialPaymentRequest
NameDescriptionTypeAdditional 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": "20bf9740-5a7f-4b55-85b9-18888b3d9ef5",
  "Amount": 2.0,
  "PaymentTime": "2026-04-14T21:46:24.3954143+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>20bf9740-5a7f-4b55-85b9-18888b3d9ef5</OrderCustomerId>
  <PaymentMethod>4</PaymentMethod>
  <PaymentNote>sample string 5</PaymentNote>
  <PaymentTime>2026-04-14T21:46:24.3954143+07:00</PaymentTime>
</PartialPaymentRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PartialPaymentRequest'.

Response Information

Resource Description

None.