Description
n8n-nodes-t0ggles
A lightweight n8n community node that connects n8n to the t0ggles tasks API.
Requirements
- You must be an administrator of your t0ggles board.
- Generate an API key in your board by navigating to Board Settings → Services → API Key.
Installation
Install the package in your n8n instance directory (available on npm at https://www.npmjs.com/package/n8n-nodes-t0ggles):
npm install n8n-nodes-t0ggles
After installation, restart n8n so the new credential and node types are loaded.
Credential Configuration
- In n8n, go to Credentials and create new credentials of type t0ggles API.
- Paste the API key you generated in t0ggles into the API key field.
- Save the credential and test the connection.
Using the Node
- Node name: t0ggles
- Resource: Task
- Operations:
- Get Many: Retrieve tasks. Use the Filters collection to filter by project, status, assigned user, etc. For custom property filters, supply JSON in the
customPropertyFiltersJsonfield, for example{ "prop_Region": "North America" }. - Create: Create one or more tasks. Required fields are title, project key, description type, and description content. Optional fields are available under Additional Fields. When setting
propertiesJson, provide a JSON object that maps property names to their values, for example{ "prop_StoryPoints": 5 }. Tags should be passed as a comma-separated list and will be converted into an array automatically.
- Get Many: Retrieve tasks. Use the Filters collection to filter by project, status, assigned user, etc. For custom property filters, supply JSON in the
After installation and configuration, the node will appear in your editor under t0ggles.
Development
Clone the repository and install dependencies:
npm install
Compile the TypeScript sources:
npm run build
To verify the package that will be published to npm, you can run:
npm pack
Support
Report issues or contribute via the GitHub repository: https://github.com/ghotso/n8n-nodes-t0ggles.