GET api.ashx/v2/ideas/statuses.{json|xml}
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/ideas/statuses.json'
}).then(function(response) {
// use response
});Example Responses
JSON
{
"PageSize": 2,
"Status": [
{
"Key": "key",
"Name": "name",
"Description": "description",
"SortOrder": 6,
"IsDefault": true,
"IsClosed": true,
"ReleasesVotes": true,
"ScoreValue": 0
},
{
"Key": "key",
"Name": "name",
"Description": "description",
"SortOrder": 25,
"IsDefault": true,
"IsClosed": true,
"ReleasesVotes": true,
"ScoreValue": 0
}
],
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<Status PageSize="2">
<Status>
<Key>key</Key>
<Name>name</Name>
<Description>description</Description>
<SortOrder>6</SortOrder>
<IsDefault>true</IsDefault>
<IsClosed>true</IsClosed>
<ReleasesVotes>true</ReleasesVotes>
<ScoreValue>0</ScoreValue>
</Status>
<Status>
<Key>key</Key>
<Name>name</Name>
<Description>description</Description>
<SortOrder>25</SortOrder>
<IsDefault>true</IsDefault>
<IsClosed>true</IsClosed>
<ReleasesVotes>true</ReleasesVotes>
<ScoreValue>0</ScoreValue>
</Status>
</Status>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>