search_records
Search Odoo database records by specifying model, field, and value for partial matching, with pagination controls for result management.
Instructions
Search records in any Odoo model.
Args:
model: Technical model name (e.g., res.partner, sale.order)
field: Field to search on (e.g., name, email)
value: Value to search for (partial match with ilike)
limit: Maximum number of results (default: 20)
offset: Offset for pagination (default: 0)
Returns:
List of found records
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| field | Yes | ||
| value | Yes | ||
| limit | No | ||
| offset | No |