-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
POST: /quickpolls/:id/responsesSubmit a response to a quick poll. Required authorization scope
When using OAuth2 access tokens, the ParametersPass the JSON representation of the quick poll response as the POST data.
Any read-only attributes you set will be ignored
(i.e. only the Parameters
Example requestHere's an example of submitting a request using
curl -H 'Content-Type: application/json' \
-H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
-d '{
"option_value": 3
}' \
https://api.proz.com/v2/quickpoll/12345/responses
ResponseOn success, a On error, a standard error response will be returned. |