GET api/Rfq/GetRfqNotes?rfqId={rfqId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| rfqId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RfqPrivateNoteView| Name | Description | Type | Additional information |
|---|---|---|---|
| RfqPrivateNoteId | integer |
None. |
|
| RfqId | integer |
None. |
|
| Note | string |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
|
| CreatorName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"rfqPrivateNoteId": 1,
"rfqId": 2,
"note": "sample string 3",
"createdDate": "2026-02-04T03:15:27.9104413+00:00",
"updatedDate": "2026-02-04T03:15:27.9104413+00:00",
"creatorName": "sample string 6"
},
{
"rfqPrivateNoteId": 1,
"rfqId": 2,
"note": "sample string 3",
"createdDate": "2026-02-04T03:15:27.9104413+00:00",
"updatedDate": "2026-02-04T03:15:27.9104413+00:00",
"creatorName": "sample string 6"
}
]
text/html
Sample:
[{"rfqPrivateNoteId":1,"rfqId":2,"note":"sample string 3","createdDate":"2026-02-04T03:15:27.9104413+00:00","updatedDate":"2026-02-04T03:15:27.9104413+00:00","creatorName":"sample string 6"},{"rfqPrivateNoteId":1,"rfqId":2,"note":"sample string 3","createdDate":"2026-02-04T03:15:27.9104413+00:00","updatedDate":"2026-02-04T03:15:27.9104413+00:00","creatorName":"sample string 6"}]
application/xml, text/xml
Sample:
<ArrayOfRfqPrivateNoteView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Service.Contracts.Api">
<RfqPrivateNoteView>
<CreatedDate>2026-02-04T03:15:27.9104413+00:00</CreatedDate>
<CreatorName>sample string 6</CreatorName>
<Note>sample string 3</Note>
<RfqId>2</RfqId>
<RfqPrivateNoteId>1</RfqPrivateNoteId>
<UpdatedDate>2026-02-04T03:15:27.9104413+00:00</UpdatedDate>
</RfqPrivateNoteView>
<RfqPrivateNoteView>
<CreatedDate>2026-02-04T03:15:27.9104413+00:00</CreatedDate>
<CreatorName>sample string 6</CreatorName>
<Note>sample string 3</Note>
<RfqId>2</RfqId>
<RfqPrivateNoteId>1</RfqPrivateNoteId>
<UpdatedDate>2026-02-04T03:15:27.9104413+00:00</UpdatedDate>
</RfqPrivateNoteView>
</ArrayOfRfqPrivateNoteView>