GET api.ashx/v2/ideas/status.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| Key | string | Query String | Key of status | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/ideas/status.json?Key=key',
data: {
'Key': 'key'
}
}).then(function(response) {
// use response
});Example Responses
JSON
{
"Status": {
"Key": "key",
"Name": "name",
"Description": "description",
"SortOrder": 6,
"IsDefault": true,
"IsClosed": true,
"ReleasesVotes": true,
"ScoreValue": 0
},
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<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>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>