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 Workspace" operation, it allows users to create a new workspace within eKyte by providing necessary details like workspace name, description, and optionally associating it with a squad.
Common scenarios where this node is beneficial include automating workspace creation during project setup, integrating workspace management into broader workflows, or synchronizing workspace data from other systems.
Practical example: Automatically create a new workspace in eKyte when onboarding a new team or starting a new initiative, ensuring all relevant members have access and the workspace is properly configured.
Properties
| Name | Meaning |
|---|---|
| The user email for eKyte operations; identifies the user performing the action. | |
| Nome | The name of the workspace to be created (required). |
| Descrição | A description of the workspace (optional). |
| ID Squad | Numeric identifier of the squad to associate with the workspace (optional). |
Output
The output is a JSON object representing the newly created workspace as returned by the eKyte API. This typically includes details such as workspace ID, name, description, associated squad ID, creation timestamps, and other metadata provided by the API response.
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 node makes HTTP POST requests to the eKyte API endpoint at
https://api.ekyte.com/n8n/workspaces. - Proper configuration of the API key and company ID credentials within n8n is necessary.
Troubleshooting
- Minimum Interval Enforcement: The node enforces a minimum interval of 15 minutes between calls to the same operation to avoid rate limiting. If this interval is not respected, an error will indicate how many seconds remain before retrying.
- Authentication Errors: Missing or invalid API key or company ID credentials will cause authentication failures. Ensure credentials are correctly set up.
- Validation Errors: Required properties such as "E-Mail" and "Nome" must be provided; otherwise, the API may reject the request.
- API Errors: Any errors returned by the eKyte API during workspace creation will be surfaced with their message. Check the API documentation or logs for more details.
Links and References
- eKyte API Documentation (general reference for endpoints and payloads)
- n8n Documentation on Creating Custom Nodes