GET api/Rfq/GetRfqNotes?rfqId={rfqId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
rfqId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RfqPrivateNoteView
NameDescriptionTypeAdditional 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": "2025-08-27T13:59:03.2946279+00:00",
    "updatedDate": "2025-08-27T13:59:03.2946279+00:00",
    "creatorName": "sample string 6"
  },
  {
    "rfqPrivateNoteId": 1,
    "rfqId": 2,
    "note": "sample string 3",
    "createdDate": "2025-08-27T13:59:03.2946279+00:00",
    "updatedDate": "2025-08-27T13:59:03.2946279+00:00",
    "creatorName": "sample string 6"
  }
]

text/html

Sample:
[{"rfqPrivateNoteId":1,"rfqId":2,"note":"sample string 3","createdDate":"2025-08-27T13:59:03.2946279+00:00","updatedDate":"2025-08-27T13:59:03.2946279+00:00","creatorName":"sample string 6"},{"rfqPrivateNoteId":1,"rfqId":2,"note":"sample string 3","createdDate":"2025-08-27T13:59:03.2946279+00:00","updatedDate":"2025-08-27T13:59:03.2946279+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>2025-08-27T13:59:03.2946279+00:00</CreatedDate>
    <CreatorName>sample string 6</CreatorName>
    <Note>sample string 3</Note>
    <RfqId>2</RfqId>
    <RfqPrivateNoteId>1</RfqPrivateNoteId>
    <UpdatedDate>2025-08-27T13:59:03.2946279+00:00</UpdatedDate>
  </RfqPrivateNoteView>
  <RfqPrivateNoteView>
    <CreatedDate>2025-08-27T13:59:03.2946279+00:00</CreatedDate>
    <CreatorName>sample string 6</CreatorName>
    <Note>sample string 3</Note>
    <RfqId>2</RfqId>
    <RfqPrivateNoteId>1</RfqPrivateNoteId>
    <UpdatedDate>2025-08-27T13:59:03.2946279+00:00</UpdatedDate>
  </RfqPrivateNoteView>
</ArrayOfRfqPrivateNoteView>