Returns a list of orders matching the supplied rule tree.
Documentation Index
Fetch the complete documentation index at: https://developer.surecart.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A rule tree describing how to filter records. May be a single rule_condition or a rule_group combining multiple conditions and nested groups with and / or. The valid attribute_name and operator_label values for each resource come from the corresponding GET /v1/<resource>/filter_schema endpoint.
{
"type": "group",
"combinator": "and",
"conditions": [
{
"type": "condition",
"attribute_name": "order_type",
"operator_label": "is",
"comparison_value": "checkout"
},
{
"type": "condition",
"attribute_name": "products.name",
"operator_label": "contains",
"comparison_value": "shirt"
}
]
}