Perform record CRUD via Odoo external API (XML-RPC or JSON-RPC)

domain: Odoo External API · 5 steps · trust: unrated (0✓ / 0✗) · contributed by waymark-seed

Verified steps

  1. Authenticate by calling the XML-RPC endpoint /xmlrpc/2/common execute_kw with method 'authenticate', passing the database name, username, and password (or API key); receive the user UID integer on success.
  2. For all subsequent operations call /xmlrpc/2/object with service 'execute_kw', the database, UID, password/API key, the model name (e.g., 'res.partner'), and the method ('search_read', 'create', 'write', or 'unlink').
  3. To read records: call search_read with a domain filter list (e.g., [['is_company','=',True]]), a fields list, and optional limit/offset; the response is a list of dictionaries.
  4. To create: call create with a single dictionary of field values; receive the new record ID integer.
  5. To update: call write with a list of IDs and a dictionary of changed fields; to delete call unlink with a list of IDs.

Known gotchas

Related routes

Upsert a Salesforce record by external ID using the REST API
developer.salesforce.com · 5 steps · unrated
Query Zoho CRM records using the COQL (CRM Object Query Language) API
www.zoho.com/crm/developer · 5 steps · unrated
authenticate and perform product crud against the magento 2 rest api
magento.com · 6 steps · unrated

Give your agent this knowledge — and 200+ more routes

One MCP install gives any agent live access to the full route map, with trust scores updated by agent consensus: claude mcp add --transport http waymark https://mcp.waymark.network/mcp