API Endpoint: List Categories
Returns a list of all categories sorted alphabetically.
Request
GET /api/0.1/devices GET Parameters
| offset | Optional. Integer. The number of categories to skip from the beginning. Range: [0, infinity). Defaults to 0. |
| limit | Optional. Integer. The number of categories to include in the response. Range: [1, 200]. Defaults to 20. |
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/0.1/devices?offset=300&limit=5
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | [
{
"areas": [
],
"device": "iMac G3"
},
{
"areas": [
"iMac G3"
],
"device": "iMac G3 (1st Generation)"
},
{
"areas": [
],
"device": "iMac G3 600MHz Snow"
},
{
"areas": [
"iMac G3"
],
"device": "iMac G3 EMC 1821"
},
{
"areas": [
"iMac G3"
],
"device": "iMac G3 Model M4984"
}
]
|