Get All Entity Type Saved Searches
Get all saved searches for a specific entity type for a user
Request
URI
GET
https://{api_host}/api/v2/savedsearch/type/{entitytype}
COPY
Path Parameters
string
entitytype
Required
entitytype
Possible values are :
DASHBOARD,
ALERT,
MAINTENANCE_WINDOW,
NOTIFICANT,
EVENT,
SOURCE,
EXTERNAL_LINK,
AGENT,
CLOUD_INTEGRATION,
USER,
USER_GROUP,
SERVICE_ACCOUNT,
INGESTION_POLICY,
ROLE,
TOKEN,
Query Parameters
integer
offset
Optional
offset
integer
limit
Optional
limit
Responses
200
successful operation
Returns
ResponseContainerPagedSavedSearch
of type(s)
application/json
{
"status": {
"result": "string",
"message": "string",
"code": 0
},
"response": {
"items": [
{
"id": "string",
"createdEpochMillis": 0,
"updatedEpochMillis": 0,
"entityType": "string",
"userId": "string",
"creatorId": "string",
"updaterId": "string"
}
],
"offset": 0,
"limit": 0,
"cursor": "string",
"totalItems": 0,
"moreItems": false,
"sort": {
"ascending": false,
"field": "string",
"default": false
}
}
}