Create a dataset snapshot based on a provided filter
Operator | Field Types | Description |
---|---|---|
= | Any | Equal to |
!= | Any | Not equal to |
< | Number, Date | Lower than |
<= | Number, Date | Lower than or equal |
> | Number, Date | Greater than |
>= | Number, Date | Greater than or equal |
in | Any | Tests if field value is equal to any of the values provided in filter’s value |
not_in | Any | Tests if field value is not equal to all of the values provided in filter’s value |
includes | Array, Text | Tests if the field value contains the filter value. If the filter value is a single string, it matches records where the field value contains that string. If the filter value is an array of strings, it matches records where the field value contains a least one string from the array. |
not_includes | Array, Text | Tests if the field value does not contain the filter value. If the filter value is a single string, it matches records where the field value does not contain that string. If the filter value is an array of strings, it matches records where the field value does not contain any of the strings from the array. |
array_includes | Array | Tests if filter value is in field value (exact match) |
not_array_includes | Array | Tests if filter value is not in field value (exact match) |
is_null | Any | Tests if the field value is equal to NULL. Operator does not accept any value. |
is_not_null | Any | Tests if the field value is not equal to NULL. Operator does not accept any value. |
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Job of creating the snapshot successfully started
The response is of type object
.