Filter Dataset with CSV/JSON Files
Create a dataset snapshot based on a provided filter
Paste your API token to the authorization field. To get a token, Create an account and learn how to generate a token.
General Description
- A call to this endpoint starts the async job of filtering the dataset and creating a snapshot with filtered data in your account.
- The maximum amount of time for the job to finish is 5 minutes. If the job doesn’t finish in this timeframe it will be cancelled.
- Creating the dataset snapshot is subject to charges based on the snapshot size and record price.
- The maximum depth of nesting the filter groups is 3.
- You can now upload CSV or JSON files containing filter values for more efficient filtering of large value sets.
Request
Endpoint
Query Parameters
Parameter | Type | Description |
---|---|---|
dataset_id | string | The unique identifier of the dataset to filter |
records_limit | integer | Optional. Maximum number of records to include in the result |
Headers
Header | Type | Description |
---|---|---|
Authorization | string | Your API token for authentication |
Content-Type | string | Must be set to multipart/form-data when uploading files |
Request Body
When using file uploads, the request body should be formatted as multipart/form-data
with the following fields:
Field | Type | Description |
---|---|---|
filter | string | A stringified JSON object containing filter criteria. Reference file names in the value field. |
files[] | file | One or more CSV or JSON files containing filter values. Multiple files can be uploaded. |
File Format Requirements
CSV File Format
- The first line must be a header matching the field name in your filter
- Each subsequent line contains a single value
- Example (
industries.csv
):
JSON File Format
- An array of objects where each object has a key matching the field name in your filter
- Example (
industries.json
):
Filter Syntax with File References
When using file uploads, reference the filename in your filter’s value
field:
Supported Operators for File References
Operator | Field Types | Description |
---|---|---|
in | Any | Tests if field value equals any value in the file |
not_in | Any | Tests if field value doesn’t equal any value in the file |
includes | Array, Text | Tests if field value contains any value in the file |
not_includes | Array, Text | Tests if field value doesn’t contain any value in the file |
array_includes | Array | Tests if any value in the file exists in field value (exact match) |
not_array_includes | Array | Tests if no value in the file exists in field value (exact match) |
Example Use Case
Filtering Companies by Industry Using a CSV File
CSV File Content (industries.csv
)
cURL Request
Using Multiple Files in a Filter
You can upload and reference multiple files in a single request:
cURL Request with Multiple Files
Troubleshooting & FAQs
Issue: “File not found” error
Solution: Ensure the filename referenced in your filter exactly matches the uploaded file name.
Issue: “Invalid file format” error
Solution: Check that your CSV has the correct header matching the field name, or your JSON is properly formatted as an array of objects.
Issue: “Field not found” error
Solution: Verify that the field name in your filter exists in the dataset. Use the Get Dataset Metadata endpoint to see available fields.
Related Documentation
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
ID of the dataset to filter
{
"name": "name",
"operator": "=",
"value": "John"
}
Response
ID of the snapshot
Was this page helpful?