Updates an existing poll. This can change a poll's title, description, and options. Updating is only possible within one hour after creation.
PATCH
/api/polls/{pollId}Authorizations
Parameters
Path Parameters
pollId*
Typestring
RequiredRequest Body
JSON
{
"name": "Test poll",
"description": "This is a new description of the poll.",
"options": null
}
Responses
Success
Samples
cURL
curl -X PATCH http://localhost/api/polls/{pollId}
JavaScript
fetch("http://localhost/api/polls/{pollId}", { method: "PATCH" })
.then(response => response.json())
.then(data => console.log(data));
PHP
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://localhost/api/polls/{pollId}");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PATCH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
Python
import requests
response = requests.patch("http://localhost/api/polls/{pollId}")
print(response.json())