cURL
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 } }
Performs an advanced search for files based on metadata filters.
Domo Developer Token for authentication.
Pagination token.
Body for search operations on Files or FileSets.
Show child attributes
A paginated list of matching files.