Create a new SavedSearchSearch
The only use of a SavedSearchSearch as of now is to retrieve all the SavedSearch resources created by a User
Security
bearerToken
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/saved-search-searches
- Staginghttps://api-v2.dashstaging.app/saved-search-searches
curl -i -X POST \
https://api-v2.dash.app/saved-search-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_EQUALS",
"field": "CREATOR_ID",
"value": "google-oauth2|110955770826801837334"
},
"sorts": []
}'Success
The specified page of SavedSearch resources which match the search criterion
The total number of SavedSearch resources which match the search criterion
Example:15
Response
{ "results": [ { … }, { … }, { … } ], "totalResults": 3 }