GET api/ContractHistory/GetContractAwards/{reportyear}

Get Contract Awards for the specified year

Request Information

URI Parameters

NameDescriptionTypeAdditional information
reportyear

Fiscal Year

integer

None.

Body Parameters

None.

Response Information

Resource Description

ContractAwardsViewModel
NameDescriptionTypeAdditional information
CONTRACT_AWARDS_ID

Random generated number for each record

string

None.

FISCAL_YEAR

Fiscal Year

integer

None.

DOCUMENT_URL

Document Link

string

None.

BOARD_REPORT_NUMBER

Board Report Number

string

None.

CONTRACT_URL

Contract Link

string

None.

CONTRACT_NUMBER

Contract Number

string

None.

CONTRACT_AMOUNT

Contract Amount

string

None.

SECRETARY_SIGNED_DATE

Signed Date

date

None.

SECRETARY_SIGNED_DISPLAY_DATE

Signed Date as mm/dd/yyyy

string

None.

VENDOR_NAME

Vendor Name

string

None.

AUTHORIZED_AMOUNT

Authorized Amount

string

None.

PROJECT_NAME

Project Name

string

None.

ACTUAL_START_DATE

Actual Start Date

string

None.

ESTIMATED_COMPLETION_DATE

Estimated Completion Date

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CONTRACT_AWARDS_ID": "sample string 1",
  "FISCAL_YEAR": 2,
  "DOCUMENT_URL": "sample string 3",
  "BOARD_REPORT_NUMBER": "sample string 4",
  "CONTRACT_URL": "sample string 5",
  "CONTRACT_NUMBER": "sample string 6",
  "CONTRACT_AMOUNT": "sample string 7",
  "SECRETARY_SIGNED_DATE": "2026-01-01T23:48:22.5657708-06:00",
  "SECRETARY_SIGNED_DISPLAY_DATE": "sample string 8",
  "VENDOR_NAME": "",
  "AUTHORIZED_AMOUNT": "sample string 10",
  "PROJECT_NAME": "sample string 11",
  "ACTUAL_START_DATE": "sample string 12",
  "ESTIMATED_COMPLETION_DATE": "sample string 13"
}

application/xml, text/xml

Sample:
<ContractAwardsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.Classes">
  <ACTUAL_START_DATE>sample string 12</ACTUAL_START_DATE>
  <AUTHORIZED_AMOUNT>sample string 10</AUTHORIZED_AMOUNT>
  <BOARD_REPORT_NUMBER>sample string 4</BOARD_REPORT_NUMBER>
  <CONTRACT_AMOUNT>sample string 7</CONTRACT_AMOUNT>
  <CONTRACT_AWARDS_ID>sample string 1</CONTRACT_AWARDS_ID>
  <CONTRACT_NUMBER>sample string 6</CONTRACT_NUMBER>
  <CONTRACT_URL>sample string 5</CONTRACT_URL>
  <DOCUMENT_URL>sample string 3</DOCUMENT_URL>
  <ESTIMATED_COMPLETION_DATE>sample string 13</ESTIMATED_COMPLETION_DATE>
  <FISCAL_YEAR>2</FISCAL_YEAR>
  <PROJECT_NAME>sample string 11</PROJECT_NAME>
  <SECRETARY_SIGNED_DATE>2026-01-01T23:48:22.5657708-06:00</SECRETARY_SIGNED_DATE>
  <SECRETARY_SIGNED_DISPLAY_DATE>sample string 8</SECRETARY_SIGNED_DISPLAY_DATE>
  <VENDOR_NAME></VENDOR_NAME>
</ContractAwardsViewModel>