GET api/CommitteeType/{index}/{rows}

Returns all the different types that a committee could be

Request Information

URI Parameters

NameDescriptionTypeAdditional information
index

string

None.

rows

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CommitteeType
NameDescriptionTypeAdditional information
Name

string

None.

Ordinal

integer

None.

Id

integer

None.

LastUpdatedTimestamp

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Ordinal": 1,
    "Id": 2,
    "LastUpdatedTimestamp": "2024-03-29T07:44:40.0321556+00:00"
  },
  {
    "Name": "sample string 1",
    "Ordinal": 1,
    "Id": 2,
    "LastUpdatedTimestamp": "2024-03-29T07:44:40.0321556+00:00"
  }
]

text/xml

Sample:
<ArrayOfCommitteeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Models">
  <CommitteeType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-03-29T07:44:40.0321556+00:00</LastUpdatedTimestamp>
    <Ordinal xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">1</Ordinal>
    <Name>sample string 1</Name>
  </CommitteeType>
  <CommitteeType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-03-29T07:44:40.0321556+00:00</LastUpdatedTimestamp>
    <Ordinal xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">1</Ordinal>
    <Name>sample string 1</Name>
  </CommitteeType>
</ArrayOfCommitteeType>