post-crm-v3-objects-line_items-search_search
Search HubSpot line items by property filters, sorting, and pagination to retrieve specific CRM records for automation.
Instructions
POST /crm/v3/objects/line_items/search. REQUIRES body parameter with search criteria. Example: {body: {filterGroups: [{filters: [{propertyName: "email", operator: "EQ", value: "john@example.com"}]}], properties: ["firstname", "lastname", "email"]}}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | A paging cursor token for retrieving subsequent pages. | |
| limit | No | The maximum results to return, up to 200 objects. | |
| query | No | The search query string, up to 3000 characters. | |
| sorts | No | Specifies sorting order based on object properties. | |
| properties | No | A list of property names to include in the response. | |
| filterGroups | No | Up to 6 groups of filters defining additional query criteria. |