Skip to main content

Search Stock Takes

POST 

/api/stock-takes/list

Returns the same paginated list of stock takes as the GET version of this endpoint, but accepts filters as a JSON request body instead of the query string. Use this POST variant when the filter set is too large or too complex to fit in a URL.

Required scope: inventory:write

Grant this scope to your token under Settings → Developer → Personal Access Tokens.

Provide advanced filters under filter_groups, a tree of conditions combined with a conjunction of and or or. Each condition names a column, an operator, and a value. A free-text search term matches against the stock take id, notes, and warehouse name.

Text columns (status, mode, variance_direction, notes, warehouse) accept: is, is_not, contains, does_not_contain, starts_with, ends_with, is_empty, is_not_empty, is_one_of, is_not_one_of. Numeric, boolean and date columns (id, value_change, is_initial_count, date_count, created_at, updated_at, archived) accept: is, is_not, greater_than, greater_than_or_equal, less_than, less_than_or_equal, between, is_empty, is_not_empty.

Sortable columns (via sort, prefix with - for descending): id, date_count, status, value_change, variance_direction, created_at, updated_at. Results default to -id.

Request

Responses

OK

Response Headers
    Content-Type