Skip to content

Search for guest uploads

Request

Create a new GuestUploadSearch

Security
bearerToken
Bodyapplication/jsonrequired
fromintegerrequired

The item number to begin the result set from

Default:0
Example:0
pageSizeinteger, [ 0 .. 1000 ]required

The maximum number of items to return in the result set.

Default:100
Example:100
criterionanyrequired
sortsArray of objectsrequired

Sorts to be applied to the search in order of precedence

curl -i -X POST \
  https://api-v2.dash.app/guest-upload-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"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
resultsArray of objectsrequired

The specified page of GuestUpload resources which match the search criterion

totalResultsintegerrequired

The total number of GuestUpload resources which match the search criterion

Example:15
Response
{ "results": [ {} ], "totalResults": 15 }