GET Draft/Notices/Lookup/{identifier}
This operation is used to return the internal system ID for the specified notice(s). The notice of interest is indicated by passing in the user-defined unique identifier. (The user-defined identifier is specified by a user at creation, for example through the Contracts Finder online service). All notices that have an identifier beginning with the supplied text are returned. A collection of details are returned for the notices matching the seach criterion.
Requires Authorization
The endpoint requires a bearer token in the http authorization header. For example "bearer 2YotnFZFEjr1zCsicMWpAA"
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier |
The identifier to search for. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
A collection of NoticeIdentifierLookup objects matching the lookup criterion.
Collection of NoticeIdentifierLookup| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets our unique id (guid) |
globally unique identifier |
None. |
| Identifier |
Gets or sets the notice identifier |
string |
None. |
| Title |
Gets or sets contract title |
string |
None. |
Response Formats
application/json, text/json
[
{
"id": "1e9c39c8-4d80-4488-8f35-0ab0f3848809",
"identifier": "M10043-A",
"title": "Hardwood flooring, large office space"
},
{
"id": "8dde3ebc-dd28-4853-b05f-3385f4313f4c",
"identifier": "M10043-B",
"title": "Furniture supply, large offices"
}
]
application/xml, text/xml
<ArrayOfNoticeIdentifierLookup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPL.ContractsFinder.BusinessEntities">
<NoticeIdentifierLookup>
<Id>1e9c39c8-4d80-4488-8f35-0ab0f3848809</Id>
<Identifier>M10043-A</Identifier>
<Title>Hardwood flooring, large office space</Title>
</NoticeIdentifierLookup>
<NoticeIdentifierLookup>
<Id>8dde3ebc-dd28-4853-b05f-3385f4313f4c</Id>
<Identifier>M10043-B</Identifier>
<Title>Furniture supply, large offices</Title>
</NoticeIdentifierLookup>
</ArrayOfNoticeIdentifierLookup>