GET Committees/{ga}/{chamber}

This will return a list of current Committees and Owners by Chamber in the requested General Assembly.

Request Information

Parameters

NameDescriptionAdditional information
ga (Required) General Assembly number. Use the GA endpoint to get a list of supported GA numbers and the current one.

Define this parameter in the request URI.

chamber (Required) Should be (H)ouse, (S)enate or (J)oint

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "GA": "sample string 1",
  "RecordCount": 2,
  "Data": [
    {
      "CommitteeID": "sample string 1",
      "Name": "sample string 2"
    },
    {
      "CommitteeID": "sample string 1",
      "Name": "sample string 2"
    },
    {
      "CommitteeID": "sample string 1",
      "Name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<Committees xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <GA>sample string 1</GA>
  <RecordCount>2</RecordCount>
  <Data>
    <CommitteeData>
      <CommitteeID>sample string 1</CommitteeID>
      <Name>sample string 2</Name>
    </CommitteeData>
    <CommitteeData>
      <CommitteeID>sample string 1</CommitteeID>
      <Name>sample string 2</Name>
    </CommitteeData>
    <CommitteeData>
      <CommitteeID>sample string 1</CommitteeID>
      <Name>sample string 2</Name>
    </CommitteeData>
  </Data>
</Committees>