cURL
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 } }
Searches for FileSets based on filter criteria.
Domo Developer Token for authentication.
Search criteria. Send an empty object {} to list all.
Body for search operations on Files or FileSets.
Show child attributes
A list of matching FileSets.