Reference Guide

SupportAssist Enterprise
41 REST API Guide SupportAssist Enterprise
Parameters in the pagination object
Parameter
Description
Additional Details
Offset
Number of entities to be skipped.
If the offset is 10 and limit is
20, then 11-20 entities would
be retrieved.
Limit
Number of entities to be retrieved.
Maximum values would be 40
if more than 40 given then
SupportAssist Enterprise
would default it to 40
Total
Total number of entities that match
the search criteria.
The total value is reported by
SupportAssist Enterprise.
Parameters in the filters object
Parameter
Description
Additional Details
operator
Type of comparison. The possible
values are “contains” or “in”.
field
Parameter for filtering.
For information, see Table
17.
value
This parameter is required when
using the “contains” operator.
values
This parameter is required when
using the “in” operator.
The following is an example for searching the first device where device type is server.
{
"pagination": {
"offset": 0,
"limit": 1
},
"filters": [
{
"operator": "contains",
"field":"devicetype",
"value":"server"
}
]
}