Retrieve Labsheet rows with optional and mandatory filters. The request body accepts a query object with optionalFilters and mandatoryFilters arrays. Optional filters are combined with OR logic. Mandatory filters are combined with AND logic. Each filter can include column, value, and operator fields. Supported operators include contains, equals, before, and after. Use before and after for date, datetime, date_created, and last_modified fields. Pagination constraints: pageSize must be at most 1000, and page multiplied by pageSize must be less than 50000. Violations return HTTP 400 with a plain string message.
Personal access token from Scispot Account → Personal Tokens
The name of the selected labsheet
Number of rows to be fetched (defaults to 5 if not specified)
The page number of rows to be fetched indexed from 1, where a page is a set of rows of size pageSize. (setting pageSize as "10" and page as "2"will fetch rows 11-20) (defaults to 1 if not specified)
(Optional) Whether to filter out archived or unarchived rows. Possible values: "archived", "unarchived", "any" (defaults to "any" if not provided)