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
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
pollId*
Typestring
RequiredRequest Body
JSON
{
"name": "string",
"description": "string",
"options": "string"
}
Responses
Success
Authorization
api_key
Variables
Key
Value
pollId*
cURL
curl -X PATCH \
'http://localhost/api/polls/{pollId}' \
--data '{
"name": "string",
"description": "string",
"options": "string"
}'
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())