Create a new PortalSearch
Security
bearerToken
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/portal-searches
- Staginghttps://api-v2.dashstaging.app/portal-searches
- MATCH_ALL
- CREATED_BY_CURRENT_USER
curl -i -X POST \
https://api-v2.dash.app/portal-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "MATCH_ALL"
},
"sorts": [
{
"field": "NAME",
"order": "ASC"
}
]
}'Response
{ "results": [ { … } ], "totalResults": 15 }