GET v1/{Client}/Actions/{ActionId}
Gets one Action.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Client |
The code of the Client database to connect to. |
string |
Required |
ActionId |
The Id of the Action. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GranicusActionName | 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": "2024-11-21T04:20:38.5400776-05:00", "ActionRowVersion": "QEA=", "ActionName": "sample string 4", "ActionActiveFlag": 5, "ActionUsedFlag": 6 }
application/xml, text/xml
Sample:
<GranicusAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1"> <ActionActiveFlag>5</ActionActiveFlag> <ActionGuid>sample string 2</ActionGuid> <ActionId>1</ActionId> <ActionLastModifiedUtc>2024-11-21T04:20:38.5400776-05:00</ActionLastModifiedUtc> <ActionName>sample string 4</ActionName> <ActionRowVersion>QEA=</ActionRowVersion> <ActionUsedFlag>6</ActionUsedFlag> </GranicusAction>
text/javascript, application/javascript, application/json-p
Sample:
({"ActionId":1,"ActionGuid":"sample string 2","ActionLastModifiedUtc":"2024-11-21T04:20:38.5400776-05:00","ActionRowVersion":"QEA=","ActionName":"sample string 4","ActionActiveFlag":5,"ActionUsedFlag":6});