Actions7
Overview
This node integrates with the eKyte platform to create and retrieve various entities such as tasks, projects, tickets, boards, workspaces, notes, and notifications. Specifically, for the "Create Note" operation, it allows users to add a new note to a specified board within a workspace on eKyte.
Typical use cases include:
- Automating note creation in project management workflows.
- Adding contextual information or updates to boards programmatically.
- Integrating eKyte notes with other systems or triggers in an automation pipeline.
For example, you could automatically create a note summarizing daily meeting outcomes on a specific board or log important reminders related to a project.
Properties
| Name | Meaning |
|---|---|
| The user email used for authenticating and performing eKyte operations. | |
| ID Workspace | Numeric identifier of the workspace where the note will be created. |
| ID Board | Numeric identifier of the board/plan where the note will be added. |
| Titulo | Title of the note to be created. |
| Descrição | Description field (optional) associated with the note. |
| Conteúdo | Content/body text of the note (optional). |
| Categoria | Category classification of the note (required). |
Output
The node outputs JSON data representing the newly created note as returned by the eKyte API. The structure corresponds directly to the API response and includes all relevant fields of the created note entity.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential and company identifier for authenticating requests to the eKyte API.
- The base URL for API calls is
https://api.ekyte.com/n8n. - The node expects the user email parameter to identify the user performing the operation.
- Proper configuration of credentials in n8n is necessary to enable communication with eKyte.
Troubleshooting
- Minimum Interval Enforcement: The node enforces a minimum interval of 15 minutes between calls of the same operation to avoid rate limiting. If this limit is violated, an error message indicates how many seconds remain before retrying.
- API Errors: If the eKyte API returns an error, the node throws an error with the message from the API. Common issues might include invalid credentials, missing required parameters, or network connectivity problems.
- Missing Required Fields: Ensure all required properties (e.g., user email, workspace ID, board ID, note title, category) are provided; otherwise, the API call will fail.
- JSON Parsing: The node attempts to parse string responses as JSON. Malformed responses may cause errors.
Links and References
- eKyte Official Website
- eKyte API Documentation (Assumed based on base URL)