Create a new ThemeSearch. This can be used to search for a theme by subdomain.
This endpoint is unauthenticated. Do not send a Bearer Token in the Authorization Header
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/theme-searches
- Staginghttps://api-v2.dashstaging.app/theme-searches
- FIELD_EQUALS
- AND
curl -i -X POST \
https://api-v2.dash.app/theme-searches \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_EQUALS",
"value": "Folder",
"field": "SUBDOMAIN"
},
"sorts": []
}'Response
{ "results": [ { … } ], "totalResults": 15 }