Nexoid
Connect N8N to Nexoid via the Nexoid API. You will need an API service account which you can make inside the Nexoid Web Application (https://app.nexoid.com)
Actions5
Overview
This node connects to the Nexoid API to perform operations on Nexoid records, which are similar to database table entries. It supports retrieving a single record by its type and ID, creating new records, updating existing records, deleting records, and searching records with optional filters. This node is useful for automating workflows that require interaction with Nexoid data, such as fetching customer details, updating invoice records, or searching for records matching specific criteria.
Use Case Examples
- Retrieve a contact record by its ID to use in a follow-up email.
- Create a new invoice record in Nexoid when a sale is completed.
- Update the status of a support ticket record based on customer interaction.
- Delete obsolete records from Nexoid automatically to maintain data hygiene.
Properties
| Name | Meaning |
|---|---|
| Record type | The type of the record to interact with, analogous to a table name in a database, e.g., 'contact' or 'invoice'. |
| Record ID | The unique identifier of the record within Nexoid. The node automatically strips any prefix (e.g., 'CON-' or 'INC-') from the ID. |
Output
JSON
*- The JSON data of the record(s) retrieved, created, updated, deleted, or searched from Nexoid.
Dependencies
- Requires an API service account credential for Nexoid API authentication, including customer ID, username, and password.
Troubleshooting
- Authentication failures due to invalid API credentials will throw an error 'Failed to authenticate with Nexoid API. Please enter valid API user credentials'. Verify and update credentials accordingly.
- Invalid JSON input in the 'Record Data' field for create or update operations will cause an error. Ensure the JSON is correctly formatted and follows Nexoid's field naming conventions.
- Record ID with prefix is automatically stripped, but if the ID format is incorrect or missing, the API call may fail. Provide the correct numeric part of the ID.
Links
- Nexoid Web Application - Official Nexoid web application where API service accounts can be created and managed.