GET v1/{Client}/EventItems/{EventItemId}/RollCalls
Gets all Roll Call Items under a particular Event Item.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Client |
The code of the Client database to connect to. |
string |
Required |
| EventItemId |
The Id of the Event Item. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GranicusRollCall| Name | Description | Type | Additional information |
|---|---|---|---|
| RollCallId | integer |
None. |
|
| RollCallGuid | string |
None. |
|
| RollCallLastModifiedUtc | date |
None. |
|
| RollCallRowVersion | Collection of byte |
None. |
|
| RollCallPersonId | integer |
Required |
|
| RollCallPersonName | string |
None. |
|
| RollCallValueId | integer |
Required |
|
| RollCallValueName | string |
None. |
|
| RollCallSort | integer |
None. |
|
| RollCallResult | integer |
None. |
|
| RollCallEventItemId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RollCallId": 1,
"RollCallGuid": "sample string 2",
"RollCallLastModifiedUtc": "2025-11-03T13:55:41.3091564-05:00",
"RollCallRowVersion": "QEA=",
"RollCallPersonId": 4,
"RollCallPersonName": "sample string 5",
"RollCallValueId": 1,
"RollCallValueName": "sample string 6",
"RollCallSort": 7,
"RollCallResult": 1,
"RollCallEventItemId": 8
},
{
"RollCallId": 1,
"RollCallGuid": "sample string 2",
"RollCallLastModifiedUtc": "2025-11-03T13:55:41.3091564-05:00",
"RollCallRowVersion": "QEA=",
"RollCallPersonId": 4,
"RollCallPersonName": "sample string 5",
"RollCallValueId": 1,
"RollCallValueName": "sample string 6",
"RollCallSort": 7,
"RollCallResult": 1,
"RollCallEventItemId": 8
}
]
application/xml, text/xml
Sample:
<ArrayOfGranicusRollCall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1">
<GranicusRollCall>
<RollCallEventItemId>8</RollCallEventItemId>
<RollCallGuid>sample string 2</RollCallGuid>
<RollCallId>1</RollCallId>
<RollCallLastModifiedUtc>2025-11-03T13:55:41.3091564-05:00</RollCallLastModifiedUtc>
<RollCallPersonId>4</RollCallPersonId>
<RollCallPersonName>sample string 5</RollCallPersonName>
<RollCallResult>1</RollCallResult>
<RollCallRowVersion>QEA=</RollCallRowVersion>
<RollCallSort>7</RollCallSort>
<RollCallValueId>1</RollCallValueId>
<RollCallValueName>sample string 6</RollCallValueName>
</GranicusRollCall>
<GranicusRollCall>
<RollCallEventItemId>8</RollCallEventItemId>
<RollCallGuid>sample string 2</RollCallGuid>
<RollCallId>1</RollCallId>
<RollCallLastModifiedUtc>2025-11-03T13:55:41.3091564-05:00</RollCallLastModifiedUtc>
<RollCallPersonId>4</RollCallPersonId>
<RollCallPersonName>sample string 5</RollCallPersonName>
<RollCallResult>1</RollCallResult>
<RollCallRowVersion>QEA=</RollCallRowVersion>
<RollCallSort>7</RollCallSort>
<RollCallValueId>1</RollCallValueId>
<RollCallValueName>sample string 6</RollCallValueName>
</GranicusRollCall>
</ArrayOfGranicusRollCall>
text/javascript, application/javascript, application/json-p
Sample:
([{"RollCallId":1,"RollCallGuid":"sample string 2","RollCallLastModifiedUtc":"2025-11-03T13:55:41.3091564-05:00","RollCallRowVersion":"QEA=","RollCallPersonId":4,"RollCallPersonName":"sample string 5","RollCallValueId":1,"RollCallValueName":"sample string 6","RollCallSort":7,"RollCallResult":1,"RollCallEventItemId":8},{"RollCallId":1,"RollCallGuid":"sample string 2","RollCallLastModifiedUtc":"2025-11-03T13:55:41.3091564-05:00","RollCallRowVersion":"QEA=","RollCallPersonId":4,"RollCallPersonName":"sample string 5","RollCallValueId":1,"RollCallValueName":"sample string 6","RollCallSort":7,"RollCallResult":1,"RollCallEventItemId":8}]);