GET v1/{Client}/Actions
Gets all Actions.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Client |
The code of the Client database to connect to. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GranicusAction| Name | Description | Type | Additional information |
|---|---|---|---|
| ActionId | integer |
None. |
|
| ActionGuid | string |
None. |
|
| ActionLastModifiedUtc | date |
None. |
|
| ActionRowVersion | Collection of byte |
None. |
|
| ActionName | string |
Required String length: inclusive between 1 and 255 |
|
| ActionActiveFlag | integer |
None. |
|
| ActionUsedFlag | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ActionId": 1,
"ActionGuid": "sample string 2",
"ActionLastModifiedUtc": "2025-11-03T13:38:03.1361252-05:00",
"ActionRowVersion": "QEA=",
"ActionName": "sample string 4",
"ActionActiveFlag": 5,
"ActionUsedFlag": 6
},
{
"ActionId": 1,
"ActionGuid": "sample string 2",
"ActionLastModifiedUtc": "2025-11-03T13:38:03.1361252-05:00",
"ActionRowVersion": "QEA=",
"ActionName": "sample string 4",
"ActionActiveFlag": 5,
"ActionUsedFlag": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfGranicusAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1">
<GranicusAction>
<ActionActiveFlag>5</ActionActiveFlag>
<ActionGuid>sample string 2</ActionGuid>
<ActionId>1</ActionId>
<ActionLastModifiedUtc>2025-11-03T13:38:03.1361252-05:00</ActionLastModifiedUtc>
<ActionName>sample string 4</ActionName>
<ActionRowVersion>QEA=</ActionRowVersion>
<ActionUsedFlag>6</ActionUsedFlag>
</GranicusAction>
<GranicusAction>
<ActionActiveFlag>5</ActionActiveFlag>
<ActionGuid>sample string 2</ActionGuid>
<ActionId>1</ActionId>
<ActionLastModifiedUtc>2025-11-03T13:38:03.1361252-05:00</ActionLastModifiedUtc>
<ActionName>sample string 4</ActionName>
<ActionRowVersion>QEA=</ActionRowVersion>
<ActionUsedFlag>6</ActionUsedFlag>
</GranicusAction>
</ArrayOfGranicusAction>
text/javascript, application/javascript, application/json-p
Sample:
([{"ActionId":1,"ActionGuid":"sample string 2","ActionLastModifiedUtc":"2025-11-03T13:38:03.1361252-05:00","ActionRowVersion":"QEA=","ActionName":"sample string 4","ActionActiveFlag":5,"ActionUsedFlag":6},{"ActionId":1,"ActionGuid":"sample string 2","ActionLastModifiedUtc":"2025-11-03T13:38:03.1361252-05:00","ActionRowVersion":"QEA=","ActionName":"sample string 4","ActionActiveFlag":5,"ActionUsedFlag":6}]);