GET api.ashx/v2/polls.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| ContentUrl | string | Query String | A url polls are associated to. Only polls created against external urls can be retrieved in the list request. | Optional | ||
| Expired | bool | Query String | Whether or not expired polls should be included. | Optional | ||
| PageIndex | int | Query String | The current page of results. | Optional | ||
| PageSize | int | Query String | The number of results to include per page. | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/polls.json'
}).then(function(response) {
// use response
});