GET Amendments/{ga}/{type}/{date}
This will retrieve a list of valid amendments for the selected General Assembly filed since the date specified.
Request Information
Parameters
Name | Description | Additional 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. |
type | (Required) Valid types are new or updated. The new parameter list all amendments filed since the provided date, the updated parameter list all amendments that have had actions performed since the provided date. |
Define this parameter in the request URI. |
date | (Required) Set the date to get records starting from to current. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "GA": "sample string 1", "RecordCount": 2, "Data": [ { "AmendmentNo": "sample string 1", "PDFDoc": "sample string 2" }, { "AmendmentNo": "sample string 1", "PDFDoc": "sample string 2" }, { "AmendmentNo": "sample string 1", "PDFDoc": "sample string 2" } ] }
application/xml, text/xml
Sample:
<Amendments 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> <AmendmentData> <AmendmentNo>sample string 1</AmendmentNo> <PDFDoc>sample string 2</PDFDoc> </AmendmentData> <AmendmentData> <AmendmentNo>sample string 1</AmendmentNo> <PDFDoc>sample string 2</PDFDoc> </AmendmentData> <AmendmentData> <AmendmentNo>sample string 1</AmendmentNo> <PDFDoc>sample string 2</PDFDoc> </AmendmentData> </Data> </Amendments>