GET api/BidHistory/GetBidRespondents?reportmonthyear={reportmonthyear}&recordID={recordID}
Get Bid History Respondents for the specified monthyear
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportmonthyear |
Report Month Year |
string |
Default value is |
| recordID |
ID of the Bid |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
BidRespondentsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RECORD_ID |
Record ID |
integer |
None. |
| BIDDER |
Name |
string |
None. |
| DATE_RECD |
Date and Time Received |
string |
None. |
| DATE_RECD_ASDATE |
Date and Time Received in Date format |
date |
None. |
| COMMENTS |
Comments |
string |
None. |
| BIDHISTORY_URL |
Bid History Year_Month URL |
string |
None. |
| AMOUNT |
Amount |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RECORD_ID": 1,
"BIDDER": "sample string 2",
"DATE_RECD": "sample string 3",
"DATE_RECD_ASDATE": "2026-01-01T23:50:10.418864-06:00",
"COMMENTS": "",
"BIDHISTORY_URL": "sample string 5",
"AMOUNT": "sample string 6"
}
application/xml, text/xml
Sample:
<BidRespondentsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.Classes"> <AMOUNT>sample string 6</AMOUNT> <BIDDER>sample string 2</BIDDER> <BIDHISTORY_URL>sample string 5</BIDHISTORY_URL> <COMMENTS></COMMENTS> <DATE_RECD>sample string 3</DATE_RECD> <DATE_RECD_ASDATE>2026-01-01T23:50:10.418864-06:00</DATE_RECD_ASDATE> <RECORD_ID>1</RECORD_ID> </BidRespondentsViewModel>