GET api/CommitteeType

Returns all the different types that a committee could be

Request Information

URI Parameters

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-04-25T20:31:45.369875+01:00"
  },
  {
    "Name": "sample string 1",
    "Ordinal": 1,
    "Id": 2,
    "LastUpdatedTimestamp": "2024-04-25T20:31:45.369875+01: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-04-25T20:31:45.369875+01: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-04-25T20:31:45.369875+01:00</LastUpdatedTimestamp>
    <Ordinal xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">1</Ordinal>
    <Name>sample string 1</Name>
  </CommitteeType>
</ArrayOfCommitteeType>