Odoo
odooOpen-source ERP and CRM platform for business management, including sales, accounting, inventory, and project management
Acciones disponibles (10)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Odoo JSON-RPC CallODOO_CALL_ODOO_JSONRPCAcciónJSON-RPC endpoint for Odoo external API calls. Provides the same functionality as XML-RPC but with JSON encoding. DEPRECATED in v19.0 and scheduled for removal in v20.0 (Fall 2026). Use JSON-2 API at POST /json/2/{model}/{method} instead.
ODOO_CALL_ODOO_JSONRPCAcciónJSON-RPC endpoint for Odoo external API calls. Provides the same functionality as XML-RPC but with JSON encoding. DEPRECATED in v19.0 and scheduled for removal in v20.0 (Fall 2026). Use JSON-2 API at POST /json/2/{model}/{method} instead.
Parámetros de entrada
argsarrayArguments to pass to the method. The structure depends on the service and method being called. For example, authenticate requires [db, login, password], execute_kw requires [db, uid, password, model, method, args, kwargs].
methodstringObligatorioThe method to call on the service (e.g., 'version', 'authenticate', 'execute', 'execute_kw'). For 'common' service: version, authenticate, login. For 'object' service: execute, execute_kw.
servicestringObligatorioThe service to call (e.g., 'common', 'object', 'db'). Common services include 'common' for version/authentication and 'object' for model operations.
databasestringThe database name to connect to. If not provided, defaults to 'openerp' for Odoo.com instances or attempts to extract from metadata.
request_idintegerJSON-RPC request ID used to match responses with requests. Can be any integer.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Applicant Parsing ResultODOO_GET_APPLICANT_RESULTAcciónTool to retrieve parsing results for a previously submitted resume/applicant document. Use when you need to check the status and get extracted fields (name, email, phone, mobile) from a resume that was previously submitted for parsing.
ODOO_GET_APPLICANT_RESULTAcciónTool to retrieve parsing results for a previously submitted resume/applicant document. Use when you need to check the status and get extracted fields (name, email, phone, mobile) from a resume that was previously submitted for parsing.
Parámetros de entrada
versionintegerAPI version number to use for the request
account_tokenstringObligatorioIAP (In-App Purchase) account token for authentication
document_tokenstringObligatorioToken received from the parse response that identifies the document to retrieve results for
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Bank Statement ResultODOO_GET_BANK_STATEMENT_RESULTAcciónTool to retrieve parsing results for a previously submitted bank statement. Returns extracted fields including balance_start, balance_end, date, and bank_statement_lines. Use when you need to check the status and get extracted data from a bank statement document using Odoo's Extract API.
ODOO_GET_BANK_STATEMENT_RESULTAcciónTool to retrieve parsing results for a previously submitted bank statement. Returns extracted fields including balance_start, balance_end, date, and bank_statement_lines. Use when you need to check the status and get extracted data from a bank statement document using Odoo's Extract API.
Parámetros de entrada
versionintegerObligatorioAPI version number. Use 1 for current version.
account_tokenstringObligatorioIAP account token for authentication.
document_tokenstringObligatorioToken received from the bank statement parse submission response. Use this to retrieve parsing results.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Expense Extraction ResultODOO_GET_EXPENSE_RESULTAcciónRetrieve parsing results for a previously submitted expense document. Returns extracted fields including description, country, date, total, and currency. Use this after submitting an expense document to get the OCR/extraction results.
ODOO_GET_EXPENSE_RESULTAcciónRetrieve parsing results for a previously submitted expense document. Returns extracted fields including description, country, date, total, and currency. Use this after submitting an expense document to get the OCR/extraction results.
Parámetros de entrada
versionintegerObligatorioAPI version number to use for the request
account_tokenstringObligatorioIAP account token for authentication and billing
document_tokenstringObligatorioToken identifying the document, returned from the parse/submit request
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Invoice Parsing ResultODOO_GET_INVOICE_RESULTAcciónTool to retrieve parsing results for a previously submitted invoice from Odoo Extract API. Use when you need to check the status and get extracted data from an invoice. Poll this endpoint until the status field is 'success' - processing may take time depending on document complexity.
ODOO_GET_INVOICE_RESULTAcciónTool to retrieve parsing results for a previously submitted invoice from Odoo Extract API. Use when you need to check the status and get extracted data from an invoice. Poll this endpoint until the status field is 'success' - processing may take time depending on document complexity.
Parámetros de entrada
versionintegerObligatorioAPI version number (must match the version used in the parse request)
account_tokenstringObligatorioIAP (In-App Purchase) account token used for the original parse request
document_tokenstringObligatorioToken returned from the invoice parse request. Used to identify the document being processed.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List DatabasesODOO_LIST_DATABASESAcciónTool to list all available Odoo databases on the server. Use when you need to see which databases are available on the Odoo instance.
ODOO_LIST_DATABASESAcciónTool to list all available Odoo databases on the server. Use when you need to see which databases are available on the Odoo instance.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Parse Applicant ResumeODOO_PARSE_APPLICANTAcciónTool to submit a resume/CV document for OCR parsing and data extraction via Odoo Extract API. Extracts name, email, phone, and mobile from applicant resumes. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
ODOO_PARSE_APPLICANTAcciónTool to submit a resume/CV document for OCR parsing and data extraction via Odoo Extract API. Extracts name, email, phone, and mobile from applicant resumes. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
Parámetros de entrada
versionintegerAPI version number. Latest version is 102. Use this to ensure compatibility with the Extract API.
documentstringObligatorioBase64-encoded resume/CV document (PDF or image format). The document should be encoded as a base64 string before submission.
request_idstringJSON-RPC request identifier for tracking. Can be any unique string to identify this request.
account_tokenstringObligatorioIAP (In-App Purchase) account token for billing. Each successful parse consumes 1 IAP credit.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Parse Bank Statement DocumentODOO_PARSE_BANK_STATEMENTAcciónTool to submit a bank statement document for OCR parsing and data extraction via Odoo Extract API. Extracts balance_start, balance_end, date, and bank_statement_lines. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
ODOO_PARSE_BANK_STATEMENTAcciónTool to submit a bank statement document for OCR parsing and data extraction via Odoo Extract API. Extracts balance_start, balance_end, date, and bank_statement_lines. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
Parámetros de entrada
versionintegerObligatorioAPI version number to use. Latest version is 100. Required to ensure compatibility with response format.
documentsstring[]ObligatorioArray containing exactly one Base64-encoded document. Supported formats: PDF, PNG, JPG. The document will be parsed to extract bank statement fields (balance_start, balance_end, date, bank_statement_lines).
request_idstringJSON-RPC request ID. Auto-generated UUID if not provided. Used to match responses with requests.
account_tokenstringObligatorioIAP (In-App Purchase) account token for billing. Each successful parse costs 1 IAP credit.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Parse Expense DocumentODOO_PARSE_EXPENSEAcciónTool to submit an expense document for OCR parsing and data extraction. Extracts description, country, date, total, and currency from expense receipts. Returns a document_token to poll for results. Use when you need to process expense documents using Odoo's Extract API.
ODOO_PARSE_EXPENSEAcciónTool to submit an expense document for OCR parsing and data extraction. Extracts description, country, date, total, and currency from expense receipts. Returns a document_token to poll for results. Use when you need to process expense documents using Odoo's Extract API.
Parámetros de entrada
versionintegerObligatorioAPI version to use. Latest version is 132.
documentsstring[]ObligatorioArray containing one Base64-encoded document image to parse. Only the first document in the array will be processed.
account_tokenstringObligatorioIAP account token for billing. Cost: 1 IAP credit per successful parse.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Parse Invoice DocumentODOO_PARSE_INVOICEAcciónTool to submit an invoice document for OCR parsing and data extraction via Odoo Extract API. Uses AI-based algorithms to extract fields like total, due date, invoice lines, VAT numbers, IBAN, supplier, client, and currency. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
ODOO_PARSE_INVOICEAcciónTool to submit an invoice document for OCR parsing and data extraction via Odoo Extract API. Uses AI-based algorithms to extract fields like total, due date, invoice lines, VAT numbers, IBAN, supplier, client, and currency. Returns a document_token to poll for results. Cost: 1 IAP credit per successful parse.
Parámetros de entrada
dbuuidstringUnique identifier of the Odoo database. Used for tracking and analytics.
versionintegerObligatorioAPI version number to use. Latest version is 123. Required to ensure compatibility with response format.
documentsstring[]ObligatorioArray containing exactly one Base64-encoded document. Supported formats: PDF, PNG, JPG. The document will be parsed to extract invoice fields.
request_idstringJSON-RPC request ID. Auto-generated UUID if not provided. Used to match responses with requests.
user_infosobjectOptional user information to enhance OCR accuracy.
webhook_urlstringURL to receive a POST notification when parsing is complete. Useful for asynchronous processing.
account_tokenstringObligatorioIAP (In-App Purchase) account token for billing. Each successful parse costs 1 IAP credit.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not