job_splits_get_list
Retrieve a paginated list of job splits by specifying filters like date range, active status, and sorting options for organized data extraction.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Returns job split by active status Values: [True, Any, False] | |
| createdBefore | No | Format - date-time (as date-time in RFC3339). Return job splits created before a certain date/time (in UTC) | |
| createdOnOrAfter | No | Format - date-time (as date-time in RFC3339). Returns job split created on or after a certain date/time (in UTC) | |
| includeTotal | No | Whether total count should be returned | |
| job | Yes | Format - int64. | |
| modifiedBefore | No | Format - date-time (as date-time in RFC3339). Returns job split modified before a certain date/time (in UTC) | |
| modifiedOnOrAfter | No | Format - date-time (as date-time in RFC3339). Returns job split modified on or after a certain date/time (in UTC) | |
| page | No | Format - int32. The logical number of page to return, starting from 1 | |
| pageSize | No | Format - int32. How many records to return (50 by default) | |
| sort | No | Applies sorting by the specified field: "?sort=+FieldName" for ascending order, "?sort=-FieldName" for descending order. Available fields are: Id, ModifiedOn, CreatedOn. | |
| tenant | Yes | Format - int64. Tenant ID |