Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
A successful response.
The response of a call to SavedSearchService_GetSavedSearch.
curl --request GET \
--url https://your-sift-api-url.com/api/v1/saved_searches/{savedSearchId} \
--header 'Authorization: Bearer <token>'{
"savedSearch": {
"savedSearchId": "<string>",
"organizationId": "<string>",
"name": "<string>",
"properties": {
"overviewMode": "<string>",
"searchTerm": "<string>",
"fromDateTime": "2023-11-07T05:31:56Z",
"toDateTime": "2023-11-07T05:31:56Z",
"assetItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"userItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"tagItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"annotationItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"runItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"reportTemplateItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"showAdvancedFilters": true,
"includeArchived": true,
"orderBy": "<string>",
"metadataItems": [
{
"key": "<string>",
"stringValue": "<string>",
"numberValue": 123,
"booleanValue": true
}
]
},
"createdByUserId": "<string>",
"modifiedByUserId": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"modifiedDate": "2023-11-07T05:31:56Z"
}
}Retrieve a saved search.
curl --request GET \
--url https://your-sift-api-url.com/api/v1/saved_searches/{savedSearchId} \
--header 'Authorization: Bearer <token>'{
"savedSearch": {
"savedSearchId": "<string>",
"organizationId": "<string>",
"name": "<string>",
"properties": {
"overviewMode": "<string>",
"searchTerm": "<string>",
"fromDateTime": "2023-11-07T05:31:56Z",
"toDateTime": "2023-11-07T05:31:56Z",
"assetItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"userItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"tagItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"annotationItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"runItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"reportTemplateItems": [
{
"id": "<string>",
"name": "<string>"
}
],
"showAdvancedFilters": true,
"includeArchived": true,
"orderBy": "<string>",
"metadataItems": [
{
"key": "<string>",
"stringValue": "<string>",
"numberValue": 123,
"booleanValue": true
}
]
},
"createdByUserId": "<string>",
"modifiedByUserId": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"modifiedDate": "2023-11-07T05:31:56Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A successful response.
The response of a call to SavedSearchService_GetSavedSearch.
Show child attributes
Was this page helpful?