odoo_search_read
Search and read records from any Odoo model in one call. Returns matching records with the requested fields, supporting domain filters, pagination, and sorting.
Instructions
Search and read records from any Odoo model in one call. Returns matching records with the requested fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max records (default 50). | |
| model | Yes | Model technical name, e.g. 'res.partner', 'sale.order', 'account.move'. | |
| order | No | Sort spec, e.g. 'create_date desc'. | |
| domain | No | Odoo search domain, e.g. [["is_company","=",true]]. Omit for all records. | |
| fields | No | Field names to return. Omit for all fields. | |
| offset | No | Records to skip (default 0). |