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

Returns paged list of committees

Request Information

URI Parameters

NameDescriptionTypeAdditional information
index

Row number to return

integer

Required

rows

How many committees to return

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of 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-20T10:08:43.9705374+01:00"
  },
  {
    "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-20T10:08:43.9705374+01:00"
  }
]

text/xml

Sample:
<ArrayOfCommittee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Models">
  <Committee>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">6</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-04-20T10:08:43.9705374+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>
  <Committee>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">6</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-04-20T10:08:43.9705374+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>
</ArrayOfCommittee>