POST api/ProductPickup/UpdateSupplierPayment

Request Information

URI Parameters

None.

Body Parameters

UpdateSupplierPaymentRequest
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IsPaid

boolean

None.

PaidDate

date

None.

Amount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "0d5a9dac-750a-42d2-a5fe-159cf2c0f492",
  "IsPaid": true,
  "PaidDate": "2026-04-14T21:55:37.8582465+07:00",
  "Amount": 1.0
}

application/xml, text/xml

Sample:
<UpdateSupplierPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.ProductPickup">
  <Amount>1</Amount>
  <Id>0d5a9dac-750a-42d2-a5fe-159cf2c0f492</Id>
  <IsPaid>true</IsPaid>
  <PaidDate>2026-04-14T21:55:37.8582465+07:00</PaidDate>
</UpdateSupplierPaymentRequest>

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 'UpdateSupplierPaymentRequest'.

Response Information

Resource Description

None.