NAiOS IconNAiOS Logo
Volver al catálogo

Odoo

odoo

Open-source ERP and CRM platform for business management, including sales, accounting, inventory, and project management

Acciones
10
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

JSON-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

  • argsarray

    Arguments 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].

  • methodstringObligatorio

    The 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.

  • servicestringObligatorio

    The service to call (e.g., 'common', 'object', 'db'). Common services include 'common' for version/authentication and 'object' for model operations.

  • databasestring

    The database name to connect to. If not provided, defaults to 'openerp' for Odoo.com instances or attempts to extract from metadata.

  • request_idinteger

    JSON-RPC request ID used to match responses with requests. Can be any integer.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Applicant Parsing ResultODOO_GET_APPLICANT_RESULTAcción

Tool 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

  • versioninteger

    API version number to use for the request

  • account_tokenstringObligatorio

    IAP (In-App Purchase) account token for authentication

  • document_tokenstringObligatorio

    Token received from the parse response that identifies the document to retrieve results for

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Bank Statement ResultODOO_GET_BANK_STATEMENT_RESULTAcción

Tool 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

  • versionintegerObligatorio

    API version number. Use 1 for current version.

  • account_tokenstringObligatorio

    IAP account token for authentication.

  • document_tokenstringObligatorio

    Token received from the bank statement parse submission response. Use this to retrieve parsing results.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Expense Extraction ResultODOO_GET_EXPENSE_RESULTAcción

Retrieve 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

  • versionintegerObligatorio

    API version number to use for the request

  • account_tokenstringObligatorio

    IAP account token for authentication and billing

  • document_tokenstringObligatorio

    Token identifying the document, returned from the parse/submit request

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Invoice Parsing ResultODOO_GET_INVOICE_RESULTAcción

Tool 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

  • versionintegerObligatorio

    API version number (must match the version used in the parse request)

  • account_tokenstringObligatorio

    IAP (In-App Purchase) account token used for the original parse request

  • document_tokenstringObligatorio

    Token returned from the invoice parse request. Used to identify the document being processed.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List DatabasesODOO_LIST_DATABASESAcción

Tool 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Parse Applicant ResumeODOO_PARSE_APPLICANTAcción

Tool 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

  • versioninteger

    API version number. Latest version is 102. Use this to ensure compatibility with the Extract API.

  • documentstringObligatorio

    Base64-encoded resume/CV document (PDF or image format). The document should be encoded as a base64 string before submission.

  • request_idstring

    JSON-RPC request identifier for tracking. Can be any unique string to identify this request.

  • account_tokenstringObligatorio

    IAP (In-App Purchase) account token for billing. Each successful parse consumes 1 IAP credit.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Parse Bank Statement DocumentODOO_PARSE_BANK_STATEMENTAcción

Tool 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

  • versionintegerObligatorio

    API version number to use. Latest version is 100. Required to ensure compatibility with response format.

  • documentsstring[]Obligatorio

    Array 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_idstring

    JSON-RPC request ID. Auto-generated UUID if not provided. Used to match responses with requests.

  • account_tokenstringObligatorio

    IAP (In-App Purchase) account token for billing. Each successful parse costs 1 IAP credit.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Parse Expense DocumentODOO_PARSE_EXPENSEAcción

Tool 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

  • versionintegerObligatorio

    API version to use. Latest version is 132.

  • documentsstring[]Obligatorio

    Array containing one Base64-encoded document image to parse. Only the first document in the array will be processed.

  • account_tokenstringObligatorio

    IAP account token for billing. Cost: 1 IAP credit per successful parse.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Parse Invoice DocumentODOO_PARSE_INVOICEAcción

Tool 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

  • dbuuidstring

    Unique identifier of the Odoo database. Used for tracking and analytics.

  • versionintegerObligatorio

    API version number to use. Latest version is 123. Required to ensure compatibility with response format.

  • documentsstring[]Obligatorio

    Array containing exactly one Base64-encoded document. Supported formats: PDF, PNG, JPG. The document will be parsed to extract invoice fields.

  • request_idstring

    JSON-RPC request ID. Auto-generated UUID if not provided. Used to match responses with requests.

  • user_infosobject

    Optional user information to enhance OCR accuracy.

  • webhook_urlstring

    URL to receive a POST notification when parsing is complete. Useful for asynchronous processing.

  • account_tokenstringObligatorio

    IAP (In-App Purchase) account token for billing. Each successful parse costs 1 IAP credit.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not