ServiceTeams Query API
Resource URL
GET /seiapi/v3/query/ServiceTeams?filters=${filterOptions}&q={queryOtions}&sort=${sortOptions}&limit=${limit}
Query Parameters
Parameter | Description | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
filters | Filter expression consists of multiple comparison operations related to each other by logical operators - Logical AND (; or and) and Logical OR (, or or). Each comparison operation has three parts: selector = Identified the field name of the object to filter against comparison-op = Currently supported comparison operators are listed in "Operators" table below arguments = Identifies the value(s) to be matched against the field. Multiple values are represented in parenthesis separated by comma The Example: filter=WorkCenter==EastCoast This will return all objects where the Supported operators are shown below in a table.
| ||||||||||||||||||||||
limit | Identifies the maximum number of objects to be returned. | ||||||||||||||||||||||
q | The q=<search term>::in:field-1,field-2 The The query parameter currently supports one search term, although it can be combined with the | ||||||||||||||||||||||
sort | Identifies the field name that should be used for sorting. The sort syntax is: sort=[-]field-1,[-]field-2
| ||||||||||||||||||||||
start | Identifies the number of objects to be skipped. This is used for pagination and allows skipping previously returned objects. |
Filters
The ${filterOptions}
parameter supports the following Service Team Object fields:
- Name
- ServiceTeamID
Q
The ${queryOptions}
supports the following Service Team Object fields:
- Name
- ServiceTeamID
Sort
The ${sortOptions}
supports the following Service Team Object fields:
- Name
- ServiceTeamID
HTTP Headers
This API uses the default ServiceMobility HTTP Headers.
HTTP Headers
This API uses the default ServiceMobility HTTP Headers.
HTTP Response Body
The response body contains a collection of Service Team Object objects that match the query parameters.
{ "TotalRecords" : 0, "Items" : [ { // object definition } ] }