Skip to content

updateSavedSearch

PUT
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/searches/{searchId}
Update saved search

Update a saved search or chart by specifying the update values in the json body. All the properties except for optional properties must be passed in the body to update the search or chart. The searchId cannot be updated once it is created. The adminBasic or adminAdvanced privilege is required.

Update Saved Search Parameters:

ParameterDescriptionData Type
nameRequired. The display name for the saved search or chart.String
folderOptional. The folder the saved search or chart will be categorized under.String
definitionRequired if the searchType is Standard. The search definition to be saved. For details on search definition syntax, see Search for jobs in the system.String
searchTypeOptional. The type for the saved search or chart. The accepted values are Standard, Chart and All. If not defined, the default type is Standard.String
colorRampRequired if the searchType is Chart. The color ramp for the saved chart.String
sortIndexOptional. The sorting order for the saved search or chart.Integer

Query parameters

NameTypeRequired
tokenstring¦null

Body parameters

Supported content types: application/json

Type: SavedSearch

An object defining the seach to be updated

NameTypeRequired
searchIdstring¦null
namestring
folderstring¦null
definitionJobQuery
searchTypestring¦null
colorRampstring¦null
sortIndexinteger(int32)¦null

searchType

Enumerated values

Chart
Click to copy
Standard
Click to copy

Path parameters

NameTypeRequired
searchIdstring
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

Success
400Bad Request

invalid object

WorkflowJsonExceptionDTO
404Not Found

error

WorkflowExceptionDTO

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
5
# You can also use wget
curl -X PUT /{orgId}/{itemId}/searches/{searchId} \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <YOUR_TOKEN>' \
  --data '{"searchId":"string","name":"string","folder":"string","definition":{"q":"string","search":"string","fields":["string"],"displayNames":["string"],"sortFields":[{"field":"string","sortOrder":"Asc"}],"spatialExtent":"string","hasLocation":true,"start":0,"num":0,"returnAllRelatedProperties":true},"searchType":"Chart","colorRamp":"string","sortIndex":0}'

Response

Use dark colors for code blocksCopy
1
2
3
{
  "success": true
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.