POST api/Payments/AddPayment
Request Information
URI Parameters
None.
Body Parameters
Payment| Name | Description | Type | Additional 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": "2026-02-04T03:18:33.6528248+00:00",
"note": "sample string 2",
"recordedBy": "sample string 3",
"recordedDate": "2026-02-04T03:18:33.6528248+00:00",
"updatedBy": "sample string 4",
"updatedDate": "2026-02-04T03:18:33.6528248+00:00",
"disabled": true,
"rfqVenueId": 6,
"userId": "sample string 7"
}
text/html
Sample:
{"paymentId":1,"paidAmount":1.0,"paidDate":"2026-02-04T03:18:33.6528248+00:00","note":"sample string 2","recordedBy":"sample string 3","recordedDate":"2026-02-04T03:18:33.6528248+00:00","updatedBy":"sample string 4","updatedDate":"2026-02-04T03:18:33.6528248+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>2026-02-04T03:18:33.6528248+00:00</PaidDate> <PaymentId>1</PaymentId> <RecordedBy>sample string 3</RecordedBy> <RecordedDate>2026-02-04T03:18:33.6528248+00:00</RecordedDate> <RfqVenueId>6</RfqVenueId> <UpdatedBy>sample string 4</UpdatedBy> <UpdatedDate>2026-02-04T03:18:33.6528248+00:00</UpdatedDate> <UserId>sample string 7</UserId> </Payment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>