GET GA

This will return a list of the General Assemblies that are available. The current GA is marked as True. You are required to provide the GA you want to access in all queries except the address validator, calendars and publications.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "GA": "sample string 1",
    "Term": "sample string 2",
    "CurrentGA": "sample string 3"
  },
  {
    "GA": "sample string 1",
    "Term": "sample string 2",
    "CurrentGA": "sample string 3"
  },
  {
    "GA": "sample string 1",
    "Term": "sample string 2",
    "CurrentGA": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGAs xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <GAs>
    <GA>sample string 1</GA>
    <Term>sample string 2</Term>
    <CurrentGA>sample string 3</CurrentGA>
  </GAs>
  <GAs>
    <GA>sample string 1</GA>
    <Term>sample string 2</Term>
    <CurrentGA>sample string 3</CurrentGA>
  </GAs>
  <GAs>
    <GA>sample string 1</GA>
    <Term>sample string 2</Term>
    <CurrentGA>sample string 3</CurrentGA>
  </GAs>
</ArrayOfGAs>