### Order Filtering Syntax Source: https://api-docs.starshipit.com/ Guidelines for applying filters to order retrieval requests. ```APIDOC ## Order Filtering ### Description Filters allow you to narrow down the orders returned by an API request. Multiple filters can be combined using commas. ### Syntax [FILTER_COLUMN]:::[VALUE] ### Negation Prefix a filter with '!' to return orders that do not meet the condition (e.g., !Country:::Australia). ### Available Filter Columns - **Order** (String) - Filter for a specific order number. - **Name** (String) - Filter for a specific 'To Name'. - **Address** ('valid') - Filter for valid addresses. - **Date** ([OPERATOR][DATE_STRING]) - Filter for shipped_date. Operators: >=, >, <=, <. Format: dd MMM yyyy or MMM yyyy. - **Source** (String or Int) - Filter for integration source by ID or name. Multiple values separated by ';'. - **State** (String) - Filter orders by state. - **Country** (String) - Filter orders by country. - **Carrier** (String) - Filter orders by carrier. - **Service** (String) - Filter orders by carrier service. - **Status** (String) - Filter orders by Order Status (e.g., Delivered, In Transit). - **SKU** (String) - Filter orders by SKU. - **SingleSKU** (String) - Filter orders by SKU, where orders only contain a single SKU. - **Writeback** (String) - Filter orders by Writeback status. - **Weight** ([OPERATOR][INTEGER]) - Filter orders by weight. Operators: >=, >, <=, <. - **ShippingMethod** (String) - Filter orders by Shipping Method. - **ShippingDescription** (String) - Filter orders by Shipping Description. - **Tag** (String) - Filter orders by Tag. ### Example Order:::12345,State:::NSW,Source:::Shopify ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.