GET Calendars/{ga}/{date}

(Deprecated -- Please use the Meetings end point.) This will return a list of Calendars for a given date

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.

date (Required) Calendar date the you want. The date is in the format of YYYY-MM-DD.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "OwnerID": "sample string 1",
    "CommitteeName": "sample string 2",
    "MeetingDate": "sample string 3",
    "MeetingTime": "sample string 4",
    "Location": "sample string 5",
    "AgendaLink": "sample string 6",
    "CalendarItems": [
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      }
    ]
  },
  {
    "OwnerID": "sample string 1",
    "CommitteeName": "sample string 2",
    "MeetingDate": "sample string 3",
    "MeetingTime": "sample string 4",
    "Location": "sample string 5",
    "AgendaLink": "sample string 6",
    "CalendarItems": [
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      }
    ]
  },
  {
    "OwnerID": "sample string 1",
    "CommitteeName": "sample string 2",
    "MeetingDate": "sample string 3",
    "MeetingTime": "sample string 4",
    "Location": "sample string 5",
    "AgendaLink": "sample string 6",
    "CalendarItems": [
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      },
      {
        "ItemIndex": "sample string 1",
        "BillName": "sample string 2"
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfCalendar xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Calendar>
    <OwnerID>sample string 1</OwnerID>
    <CommitteeName>sample string 2</CommitteeName>
    <MeetingDate>sample string 3</MeetingDate>
    <MeetingTime>sample string 4</MeetingTime>
    <Location>sample string 5</Location>
    <AgendaLink>sample string 6</AgendaLink>
    <CalendarItems>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
    </CalendarItems>
  </Calendar>
  <Calendar>
    <OwnerID>sample string 1</OwnerID>
    <CommitteeName>sample string 2</CommitteeName>
    <MeetingDate>sample string 3</MeetingDate>
    <MeetingTime>sample string 4</MeetingTime>
    <Location>sample string 5</Location>
    <AgendaLink>sample string 6</AgendaLink>
    <CalendarItems>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
    </CalendarItems>
  </Calendar>
  <Calendar>
    <OwnerID>sample string 1</OwnerID>
    <CommitteeName>sample string 2</CommitteeName>
    <MeetingDate>sample string 3</MeetingDate>
    <MeetingTime>sample string 4</MeetingTime>
    <Location>sample string 5</Location>
    <AgendaLink>sample string 6</AgendaLink>
    <CalendarItems>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
      <CalendarItem>
        <ItemIndex>sample string 1</ItemIndex>
        <BillName>sample string 2</BillName>
      </CalendarItem>
    </CalendarItems>
  </Calendar>
</ArrayOfCalendar>