PUT api/Payments/UpdatePayment?PaymentId={PaymentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PaymentId

integer

Required

Body Parameters

Payment
NameDescriptionTypeAdditional information
PaymentId

integer

None.

PaidAmount

decimal number

None.

PaidDate

date

None.

Note

string

None.

RecordedBy

string

None.

RecordedDate

date

None.

UpdatedBy

string

None.

UpdatedDate

date

None.

Disabled

boolean

None.

RfqVenueId

integer

None.

UserId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "paymentId": 1,
  "paidAmount": 1.0,
  "paidDate": "2025-08-27T14:44:58.74972+00:00",
  "note": "sample string 2",
  "recordedBy": "sample string 3",
  "recordedDate": "2025-08-27T14:44:58.74972+00:00",
  "updatedBy": "sample string 4",
  "updatedDate": "2025-08-27T14:44:58.74972+00:00",
  "disabled": true,
  "rfqVenueId": 6,
  "userId": "sample string 7"
}

text/html

Sample:
{"paymentId":1,"paidAmount":1.0,"paidDate":"2025-08-27T14:44:58.74972+00:00","note":"sample string 2","recordedBy":"sample string 3","recordedDate":"2025-08-27T14:44:58.74972+00:00","updatedBy":"sample string 4","updatedDate":"2025-08-27T14:44:58.74972+00:00","disabled":true,"rfqVenueId":6,"userId":"sample string 7"}

application/xml, text/xml

Sample:
<Payment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Common.Models">
  <Disabled>true</Disabled>
  <Note>sample string 2</Note>
  <PaidAmount>1</PaidAmount>
  <PaidDate>2025-08-27T14:44:58.74972+00:00</PaidDate>
  <PaymentId>1</PaymentId>
  <RecordedBy>sample string 3</RecordedBy>
  <RecordedDate>2025-08-27T14:44:58.74972+00:00</RecordedDate>
  <RfqVenueId>6</RfqVenueId>
  <UpdatedBy>sample string 4</UpdatedBy>
  <UpdatedDate>2025-08-27T14:44:58.74972+00:00</UpdatedDate>
  <UserId>sample string 7</UserId>
</Payment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>