GET Draft/Notices/Statistics

Get basic statistics for signed in user's organisation notices.

Requires Authorization

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

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A StatisticsModel object containing summary statistics for the user's organisation notices.

StatisticsModel
NameDescriptionTypeAdditional information
DraftNotices

The total number of draft notices

integer

None.

PublishedNotices

The total number of published notices

integer

None.

OpenNotices

The total number of open notices

integer

None.

ClosedNotices

The total number of closed notices

integer

None.

WithdrawnNotices

The total number of withdrawn notices

integer

None.

AwardedNotices

The total number of awarded notices

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "draftNotices": 1,
  "publishedNotices": 18,
  "openNotices": 3,
  "closedNotices": 4,
  "withdrawnNotices": 5,
  "awardedNotices": 6
}

application/xml, text/xml

Sample:
<StatisticsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPL.ContractsFinder.BusinessEntities">
  <AwardedNotices>6</AwardedNotices>
  <ClosedNotices>4</ClosedNotices>
  <DraftNotices>1</DraftNotices>
  <OpenNotices>3</OpenNotices>
  <PublishedNotices>2</PublishedNotices>
  <WithdrawnNotices>5</WithdrawnNotices>
</StatisticsModel>