Xubio icon

Xubio

Interactúa con la API de Xubio para operaciones contables con soporte AI

Overview

This node integrates with the Xubio API to perform accounting-related operations, specifically here focusing on managing clients ("Cliente" resource). The "Crear" operation allows users to create a new client record in Xubio by providing client details such as name, email, phone number, and tax identification number (CUIT).

Typical use cases include automating client creation workflows when onboarding new customers, syncing client data from other systems into Xubio, or batch-creating clients based on external data sources.

For example, after collecting customer information via a web form, this node can be used to automatically add that customer as a client in Xubio without manual entry.

Properties

Name Meaning
Datos del Cliente (clientData) A collection of fields describing the client to create. Includes:
- Nombre: Full name of the client (string).
- Email: Client's email address (string).
- Teléfono: Phone number (string).
- CUIT: Tax identification number (string).

Output

The node outputs JSON data representing the response from the Xubio API after creating the client. This typically includes the newly created client's details such as their unique ID assigned by Xubio and any other metadata returned by the API.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Xubio API.
  • The node uses internal helper functions to make HTTP requests to Xubio endpoints.
  • No additional environment variables are explicitly required beyond the API authentication setup.

Troubleshooting

  • Missing or invalid client data: If no client fields are provided or all fields have default placeholder values, the node will throw an error indicating at least one client data field must be specified.
  • Invalid API credentials: Authentication failures will result in errors from the API request. Ensure the API key credential is correctly configured.
  • Network or endpoint issues: Errors related to connectivity or incorrect endpoint paths will cause the node to fail. Verify network access and endpoint correctness.
  • JSON parsing errors: If any JSON input parameters (not applicable here for create operation but relevant for custom calls) are malformed, the node will report JSON parsing errors.
  • Invalid operation or resource: Selecting unsupported resources or operations will cause errors indicating the feature is not implemented.

Links and References

Discussion