GET Amendments/{ga}/{docno}/actions
This will return a list of all of the actions for the specified Amendment.
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. |
docno | (Required) Amendment number. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[ { "GA": "sample string 1", "AmendmentNo": "sample string 2", "ActionDate": "sample string 3", "ActionTime": "sample string 4", "Description": "sample string 5" }, { "GA": "sample string 1", "AmendmentNo": "sample string 2", "ActionDate": "sample string 3", "ActionTime": "sample string 4", "Description": "sample string 5" }, { "GA": "sample string 1", "AmendmentNo": "sample string 2", "ActionDate": "sample string 3", "ActionTime": "sample string 4", "Description": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfAmendmentActions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AmendmentActions> <GA>sample string 1</GA> <AmendmentNo>sample string 2</AmendmentNo> <ActionDate>sample string 3</ActionDate> <ActionTime>sample string 4</ActionTime> <Description>sample string 5</Description> </AmendmentActions> <AmendmentActions> <GA>sample string 1</GA> <AmendmentNo>sample string 2</AmendmentNo> <ActionDate>sample string 3</ActionDate> <ActionTime>sample string 4</ActionTime> <Description>sample string 5</Description> </AmendmentActions> <AmendmentActions> <GA>sample string 1</GA> <AmendmentNo>sample string 2</AmendmentNo> <ActionDate>sample string 3</ActionDate> <ActionTime>sample string 4</ActionTime> <Description>sample string 5</Description> </AmendmentActions> </ArrayOfAmendmentActions>