GET api/Committee/{index}/{rows}?id={id}

Returns a committee by id or name, with or without hypens.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of the committee

string

Required

index

string

None.

rows

string

None.

Body Parameters

None.

Response Information

Resource Description

Committee
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

Type

string

None.

Status

string

None.

Url

string

None.

Id

integer

None.

LastUpdatedTimestamp

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Description": "sample string 2",
  "Type": "sample string 3",
  "Status": "sample string 4",
  "Url": "sample string 5",
  "Id": 6,
  "LastUpdatedTimestamp": "2024-04-19T19:30:52.577095+01:00"
}

text/xml

Sample:
<Committee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Models">
  <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">6</Id>
  <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-04-19T19:30:52.577095+01:00</LastUpdatedTimestamp>
  <Description>sample string 2</Description>
  <Name>sample string 1</Name>
  <Status>sample string 4</Status>
  <Type>sample string 3</Type>
  <Url>sample string 5</Url>
</Committee>