POST api/Rfq/UpdateRfqNote
Request Information
URI Parameters
None.
Body Parameters
RfqPrivateNoteViewName | Description | Type | Additional information |
---|---|---|---|
RfqPrivateNoteId | integer |
None. |
|
RfqId | integer |
None. |
|
Note | string |
None. |
|
CreatedDate | date |
None. |
|
UpdatedDate | date |
None. |
|
CreatorName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "rfqPrivateNoteId": 1, "rfqId": 2, "note": "sample string 3", "createdDate": "2025-08-27T15:31:48.102689+00:00", "updatedDate": "2025-08-27T15:31:48.102689+00:00", "creatorName": "sample string 6" }
text/html
Sample:
{"rfqPrivateNoteId":1,"rfqId":2,"note":"sample string 3","createdDate":"2025-08-27T15:31:48.102689+00:00","updatedDate":"2025-08-27T15:31:48.102689+00:00","creatorName":"sample string 6"}
application/xml, text/xml
Sample:
<RfqPrivateNoteView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Service.Contracts.Api"> <CreatedDate>2025-08-27T15:31:48.102689+00:00</CreatedDate> <CreatorName>sample string 6</CreatorName> <Note>sample string 3</Note> <RfqId>2</RfqId> <RfqPrivateNoteId>1</RfqPrivateNoteId> <UpdatedDate>2025-08-27T15:31:48.102689+00:00</UpdatedDate> </RfqPrivateNoteView>
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>