GET api/rest/2/get_draft_awards/{MimeType}/{id}

For the Version 1 equivalent method, please visit GET Draft/Awards/{id}. However please note that whilst we are still supporting Version 1 methods for the foreseeable future to provide backwards compatibility, they should be considered deprecated and we encourage the use of this Version 2 method.

Gets all award details for the specified notice. This method will return multiple items if present. Multiple award details identify multiple suppliers associated with a single award.

Requires Authorization

The endpoint requires a bearer token in the http authorization header. For example "bearer 2YotnFZFEjr1zCsicMWpAA"

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

A GUID identifying the notice for which the award details are being requested.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

An AwardDetail object describing the award; otherwise a collection of errors with HTTP status 400.

Collection of AwardDetail

NameDescriptionTypeAdditional information
Id

The unique id of the award. (Assigned by the system at creation, should only be supplied for subsequent updates and actions).

integer

None.

NoticeId

The GUID identifying the notice that this award relates to.

globally unique identifier

None.

ParentId

The unique id of the parent award.

integer

None.

Value

The value of the award in GBP.

decimal number

None.

SupplierName

The name of the supplier the contract has been awarded to.

string

None.

SupplierAddress

The address of the supplier.

string

None.

Contact

A contact name for the supplier.

string

None.

DunsNumber

The DUNS number for the supplier, if known.

string

None.

ReferenceType

The type of reference being passed.

ReferenceType

None.

Reference

The reference value of the Reference type specified in the ReferenceType field.

string

None.

SupplierAwardedValue

The value of the award for the individual supplier in GBP.

double

None.

StartDate

The start date of the awarded contract.

date

None.

EndDate

The end date of the awarded contract.

date

None.

AwardedDate

The date of the award.

date

None.

AwardedProcedureType

The awarded contract procedure type.

AwardedProcedureType

None.

AwardedProcedureTypeOther

Gets or sets the other procedure detail

String

None.

AwardedProcedureAcceleratedJustification

Gets or sets justification of accelerated procedure

String

None.

AnnexDOptionType

The Annex D option, where applicable.

AnnexDOptionType

None.

ReasonContractLawful

The reason why this contract is lawful, where applicable.

string

None.

AdditionalDetails

Additional details for this award/supplier

string

None.

AwardedToSME

Gets or sets a value indicating whether this opportunity was awarded to a SME.

boolean

None.

AwardedToVCSO

Gets or sets a value indicating whether this opportunity was awarded to a VCSO.

boolean

None.

AwardGuid

Gets or sets a GUID as an enduring identifier through draft and publication

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "noticeId": "a716f97a-82ca-438f-86a3-cb5e939c9ef4",
    "parentId": 1,
    "value": 3.0,
    "supplierName": "sample string 4",
    "supplierAddress": "sample string 5",
    "contact": "sample string 6",
    "dunsNumber": "sample string 7",
    "referenceType": "COMPANIES_HOUSE",
    "reference": "123456789",
    "supplierAwardedValue": 80.0,
    "startDate": "2016-09-12T09:52:16+01:00",
    "endDate": "2016-09-12T09:52:16+01:00",
    "awardedDate": "2016-09-12T09:52:16+01:00",
    "awardedProcedureType": "Open",
    "annexDOptionType": "NoSuitableTendersInResponseToOpenProcedure",
    "reasonContractLawful": "sample string 8",
    "additionalDetails": "sample string 9",
    "awardedToSME": true,
    "awardedToVCSO": true,
    "awardGuid": "53425844-dfba-4474-a326-7ea829f1912c"
  },
  {
    "id": 1,
    "noticeId": "a716f97a-82ca-438f-86a3-cb5e939c9ef4",
    "parentId": 1,
    "value": 3.0,
    "supplierName": "sample string 4",
    "supplierAddress": "sample string 5",
    "contact": "sample string 6",
    "dunsNumber": "sample string 7",
    "referenceType": "COMPANIES_HOUSE",
    "reference": "123456789",
    "supplierAwardedValue": 100.0,
    "startDate": "2016-09-12T09:52:16+01:00",
    "endDate": "2016-09-12T09:52:16+01:00",
    "awardedDate": "2016-09-12T09:52:16+01:00",
    "awardedProcedureType": "Open",
    "annexDOptionType": "NoSuitableTendersInResponseToOpenProcedure",
    "reasonContractLawful": "sample string 8",
    "additionalDetails": "sample string 9",
    "awardedToSME": true,
    "awardedToVCSO": true,
    "awardGuid": "53425844-dfba-4474-a326-7ea829f1912c"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAwardDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPL.ContractsFinder.BusinessEntities">
  <AwardDetail>
    <AdditionalDetails>sample string 9</AdditionalDetails>
    <AnnexDOptionType>NoSuitableTendersInResponseToOpenProcedure</AnnexDOptionType>
    <AwardGuid>53425844-dfba-4474-a326-7ea829f1912c</AwardGuid>
    <AwardedDate>2016-09-12T09:52:16+01:00</AwardedDate>
    <AwardedProcedureType>Open</AwardedProcedureType>
    <AwardedToSME>true</AwardedToSME>
    <AwardedToVCSO>true</AwardedToVCSO>
    <Contact>sample string 6</Contact>
    <DunsNumber>sample string 7</DunsNumber>
    <EndDate>2016-09-12T09:52:16+01:00</EndDate>
    <Id>1</Id>
    <NoticeId>a716f97a-82ca-438f-86a3-cb5e939c9ef4</NoticeId>
    <ParentId>1</ParentId>
    <ReasonContractLawful>sample string 8</ReasonContractLawful>
    <StartDate>2016-09-12T09:52:16+01:00</StartDate>
    <SupplierAddress>sample string 5</SupplierAddress>
    <SupplierName>sample string 4</SupplierName>
    <Value>3</Value>
    <ReferenceType>COMPANIES_HOUSE</ReferenceType>
    <Reference>123456789</Reference>
    <SupplierAwardedValue>80.0</SupplierAwardedValue>
  </AwardDetail>
  <AwardDetail>
    <AdditionalDetails>sample string 9</AdditionalDetails>
    <AnnexDOptionType>NoSuitableTendersInResponseToOpenProcedure</AnnexDOptionType>
    <AwardGuid>53425844-dfba-4474-a326-7ea829f1912c</AwardGuid>
    <AwardedDate>2016-09-12T09:52:16+01:00</AwardedDate>
    <AwardedProcedureType>Open</AwardedProcedureType>
    <AwardedToSME>true</AwardedToSME>
    <AwardedToVCSO>true</AwardedToVCSO>
    <Contact>sample string 6</Contact>
    <DunsNumber>sample string 7</DunsNumber>
    <EndDate>2016-09-12T09:52:16+01:00</EndDate>
    <Id>1</Id>
    <NoticeId>a716f97a-82ca-438f-86a3-cb5e939c9ef4</NoticeId>
    <ParentId>1</ParentId>
    <ReasonContractLawful>sample string 8</ReasonContractLawful>
    <StartDate>2016-09-12T09:52:16+01:00</StartDate>
    <SupplierAddress>sample string 5</SupplierAddress>
    <SupplierName>sample string 4</SupplierName>
    <Value>3</Value>
    <ReferenceType>COMPANIES_HOUSE</ReferenceType>
    <Reference>123456789</Reference>
    <SupplierAwardedValue>100.0</SupplierAwardedValue>
  </AwardDetail>
</ArrayOfAwardDetail>