Skip to main content
POST
/
api
/
files
/
v1
/
filesets
/
search
Search FileSets
curl --request POST \
  --url https://example.com/v1/api/files/v1/filesets/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
    }
  ]
}
'
{
  "fileSets": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "createdBy": 123,
      "updated": "2023-11-07T05:31:56Z",
      "updatedBy": 123,
      "owner": "<string>",
      "permission": "<string>",
      "fileCount": 123
    }
  ],
  "pageContext": {
    "next": "<string>",
    "offset": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication.

Query Parameters

limit
integer
default:100
offset
integer
default:0

Body

application/json

Search criteria. Send an empty object {} to list all.

Body for search operations on Files or FileSets.

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

Response

A list of matching FileSets.

fileSets
object[]
pageContext
object