curl --request PATCH \
--url https://your-sift-api-url.com/api/v1/saved_searches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"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"
},
"updateMask": "<string>"
}'