eKyte icon

eKyte

Create and retrieve data from eKyte (tasks, projects, tickets, boards, workspaces, notes, notifications)

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 Project operation, it allows users to create a new project within eKyte by providing details like project name, description, workspace association, tags, and start date.

Common scenarios where this node is beneficial include automating project creation workflows in project management pipelines, syncing project data from other tools into eKyte, or programmatically managing projects based on external triggers.

For example, you could use this node to automatically create a new project in eKyte whenever a new client onboarding form is submitted, ensuring consistent project setup without manual intervention.

Properties

Name Meaning
E-Mail The user email for eKyte operations; identifies the user performing the action.
ID Workspace Numeric identifier of the workspace where the project will be created.
Descrição Description text providing additional details about the project.
Titulo The title or name of the project (required).
Identificação An alias or identification string for the project (optional).
Tags Comma-separated tags associated with the project (optional).
Data Início The start date of the project (optional).

Output

The output is a JSON object representing the newly created project as returned by the eKyte API. This typically includes all relevant project details such as its unique ID, name, description, workspace association, tags, start date, and any 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 configured in n8n to authenticate requests against the eKyte API.
  • The node makes HTTP POST requests to https://api.ekyte.com/n8n/projects endpoint.
  • Proper network connectivity to the eKyte API service is necessary.

Troubleshooting

  • Minimum Interval Enforcement: The node enforces a minimum interval of 15 minutes between calls for the same operation to avoid rate limiting. If you see an error like:
    Intervalo mínimo de 15 minutos não respeitado para a operação "createProject". Tente novamente em XX segundos.
    It means you need to wait before retrying the operation.

  • Authentication Errors: If the API key or company ID credentials are missing or invalid, the node will fail. Ensure that valid credentials are set up in n8n.

  • Invalid Input Data: Required fields such as "Titulo" (projectName) and "E-Mail" must be provided. Missing these will cause errors.

  • API Errors: Any error message returned by the eKyte API will be surfaced prefixed with Error executing operation createProject:. Check the message for details and verify input parameters and API status.

Links and References

  • eKyte Official Website — For general information about the platform.
  • eKyte API Documentation — Not publicly linked here, but consult your eKyte account or support for API docs related to project creation endpoints.

Discussion