PUT v1/{Client}/EventItems/{EventItemId}/Votes/{VoteId}
Updates one Vote 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 |
| VoteId |
The Id of the Vote Item. |
integer |
Required |
Body Parameters
GranicusVote object to be updated. Note that VoteId is not required to be set.
GranicusVote| Name | Description | Type | Additional information |
|---|---|---|---|
| VoteId | integer |
None. |
|
| VoteGuid | string |
None. |
|
| VoteLastModifiedUtc | date |
None. |
|
| VoteRowVersion | Collection of byte |
None. |
|
| VotePersonId | integer |
Required |
|
| VotePersonName | string |
None. |
|
| VoteValueId | integer |
Required |
|
| VoteValueName | string |
None. |
|
| VoteSort | integer |
None. |
|
| VoteResult | integer |
None. |
|
| VoteEventItemId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"VoteId": 1,
"VoteGuid": "sample string 2",
"VoteLastModifiedUtc": "2025-11-03T13:55:41.4907425-05:00",
"VoteRowVersion": "QEA=",
"VotePersonId": 4,
"VotePersonName": "sample string 5",
"VoteValueId": 1,
"VoteValueName": "sample string 6",
"VoteSort": 7,
"VoteResult": 1,
"VoteEventItemId": 8
}
application/xml, text/xml
Sample:
<GranicusVote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegistarWebAPI.Models.v1"> <VoteEventItemId>8</VoteEventItemId> <VoteGuid>sample string 2</VoteGuid> <VoteId>1</VoteId> <VoteLastModifiedUtc>2025-11-03T13:55:41.4907425-05:00</VoteLastModifiedUtc> <VotePersonId>4</VotePersonId> <VotePersonName>sample string 5</VotePersonName> <VoteResult>1</VoteResult> <VoteRowVersion>QEA=</VoteRowVersion> <VoteSort>7</VoteSort> <VoteValueId>1</VoteValueId> <VoteValueName>sample string 6</VoteValueName> </GranicusVote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns Id of the updated Vote Item as a string value when Accept header is "text/plain"; otherwise returns updated Vote Item as an object.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |