Package Information
Released: 12/8/2023
Downloads: 7 weekly / 24 monthly
Latest Version: 3.0.2
Author: buildforcaredsi
Available Nodes
Documentation
n8n-nodes-ksaar
Features
API
Name | Method | API | |
Users | |||
Get user information | GET | /v1/users/{id} | :white_check_mark: |
Update user information | PATCH | /v1/users/{id} | :first_quarter_moon: |
Applications | |||
Get applications | GET | /v1/applications | :white_check_mark: |
Get application workflows | GET | /v1/applications/{id}/workflows | :white_check_mark: |
Get application users | GET | /v1/applications/{id}/users | :white_check_mark: |
Get application user by email | GET | /v1/applications/{id}/users/email/{email} | :white_check_mark: |
Get application user fields | GET | /v1/applications/{id}/users/fields | :white_check_mark: |
Worflows | |||
Get workflow records | GET | /v1/workflows/{id}/records | :white_check_mark: |
Get workflow fields | GET | /v1/workflows/{id}/fields | :white_check_mark: |
Records | |||
Get record | GET | /v1/records/{id} | :white_check_mark: |
Create record | POST | /v1/workflows/{id}/records | :white_check_mark: |
Update record | PATCH | /v1/records/{id} | :white_check_mark: |
Delete record | DELETE | /v1/records/{id} | :white_check_mark: |
Get record file | GET | /v1/records/{id}/file/{fieldId} | :x: |
Upload record file | POST | /v1/records/{id}/file/{fieldId} | :white_check_mark: |
Delete record'file | DELETE | /v1/records/{id}/file/{fieldId}/{fileId} | :first_quarter_moon: |
Test the node
You can test your node as you build it by running it in a local n8n instance.
Install n8n using npm
npm install n8n -g
Clone git repository
git clone https://github.com/BuildForCare/n8n-nodes-ksaar.git
cd n8n-nodes-ksaar/
Publish it locally
# In the node directory
npm run build
npm link
Install the node into your local n8n instance
# In the nodes directory within your n8n installation
npm link n8n-nodes-ksaar
Make sure you run npm link n8n-nodes-ksaar in the nodes directory within your n8n installation. This is probably something like ~/.n8n/nodes/
More information
Refer to N8N's documentation on creating nodes for detailed information on building your own nodes.