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
Fullscreen
1
2
3
4
5
6
7
8
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
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"Status": {
"Key": "key",
"Name": "name",
"Description": "description",
"SortOrder": 6,
"IsDefault": true,
"IsClosed": true,
"ReleasesVotes": true,
"ScoreValue": 0
},
"Errors": [
"string",
"string"
]
}
XML
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-16"?>
key
name
description
6
true
true
true
0
string
string