get_model_doc
Retrieve API documentation for an Odoo model. Get a summary of all methods or full details for a specific method to discover parameter names and types before calling them.
Instructions
Get API documentation for an Odoo model.
Without a method name, returns a compact summary: each method's name and
call signature. With a method name, returns that method's full
documentation (parameters, types, defaults, docstring, return type).
Use this before call_method to discover exact parameter names and types.
Requires the API key user to be in the api_doc.group_allow_doc group.
Args:
model: The Odoo model name (e.g. "res.partner").
method: Optional method name. If provided, returns full docs for that
method only. If omitted, returns a summary of all methods.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| method | No |