Skip to main content
POST
/
api
/
files
/
v1
/
filesets
/
{filesetId}
/
files
/
search
Search Files in FileSet
curl --request POST \
  --url https://example.com/v1/api/files/v1/filesets/{filesetId}/files/search \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "fieldSort": [
    {
      "field": "<string>",
      "order": "ASC"
    }
  ],
  "filters": [
    {
      "field": "<string>",
      "value": [
        "<string>"
      ],
      "not": false,
      "operator": "EQUALS"
    }
  ],
  "dateFilters": [
    {
      "field": "<string>",
      "start": "2023-11-07T05:31:56Z",
      "end": "2023-11-07T05:31:56Z",
      "not": false
    }
  ]
}
'
{
  "files": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "path": "<string>",
      "name": "<string>",
      "fileType": "<string>",
      "contentType": "<string>",
      "size": 123,
      "created": "2023-11-07T05:31:56Z",
      "createdBy": 123,
      "hash": "<string>",
      "hashAlgorithm": "<string>",
      "downloadUrl": "<string>",
      "connectorKey": "<string>",
      "indexStatus": "<string>",
      "indexReason": "<string>"
    }
  ],
  "pageContext": {
    "next": "<string>",
    "offset": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication.

Path Parameters

filesetId
string<uuid>
required

Query Parameters

directoryPath
string
immediateChildren
boolean
default:false
limit
integer
default:100
next
string

Pagination token.

Body

application/json

Body for search operations on Files or FileSets.

fieldSort
object[]
filters
object[]
dateFilters
object[]

Response

A paginated list of matching files.

files
object[]
pageContext
object