Odoo
CRM & Support Live verified

Odoo Connector

Connect to Odoo (OpenERP) to read and write any model -- contacts, sales orders, invoices, leads, inventory, HR -- through its ORM: search_read, create, write, unlink, fields_get, read_group, and arbitrary business methods, over JSON-RPC.

$pip install "toolsconnector[odoo]"
11
Actions
CRM & Support
Category
Free
Apache 2.0

All 11 Actions

Action Description Parameters Returns
call_methodCall any method on any Odoo model (advanced escape hatch)model, method  [args, kwargs]Any
createCreate a new record of any Odoo modelmodel, valuesint
fields_getDiscover the fields (schema) of an Odoo modelmodel  [attributes]dict
get_versionGet the Odoo server version (connectivity / capability check)OdooVersion
name_searchFind records by display name (typeahead-style lookup)model  [name, limit, operator]list
readRead specific records of an Odoo model by their IDsmodel, ids  [fields]list
read_groupAggregate Odoo records grouped by one or more fields (GROUP BY)model  [domain, fields, groupby, limit, offset, orderby]list
search_countCount records of an Odoo model matching a domain filtermodel  [domain]int
search_readSearch and read records of any Odoo model in one callmodel  [domain, fields, limit, offset, order]PaginatedList[dict[str, Any]]
unlinkDelete records of an Odoo model by their IDsmodel, idsbool
writeUpdate existing records of an Odoo modelmodel, ids, valuesbool
Open Interactive Docs & Playground →

Full schema explorer, code generation, and live API testing