get https://api.supportbench.com/states/
Return a user count for items related to a user.
Returning list object
Name | Description |
---|---|
id | The unique id of the state. |
name | The name of the state. |
Responses
Return a user count for items related to a user.
Name | Description |
---|---|
id | The unique id of the state. |
name | The name of the state. |
xxxxxxxxxx
17var list_data = null;
var category_id = '0'; //If left as 0 or null, all states will be returned
​
$.ajax({
url: 'https://api.supportbench.net/states/' + category_id,
type: 'get',
contentType: 'application/json',
dataType: 'json',
beforeSend: function(request) {
request.setRequestHeader('Authorization', 'Bearer ' + token);
},
success: function(r) {
$.each(r, function (index, i) {
alert(i.id);
})
}
});