This is a custom n8n node created by Nskha that enables seamless integration with GameBoost. It allows sellers to manage their accounts through automated workflows without any programming knowledge.
- No-code Automation: Seamlessly integrate GameBoost operations into your n8n workflows
- Complete Account Management:
- List all accounts
- Create new accounts
- Delete existing accounts
- Secure Authentication: Built-in credential management for secure API access
- Error Handling: Robust error handling and detailed feedback
- Documentation: Comprehensive documentation and examples included
- Node.js: Version 18+ (Recommended: 20+)
- n8n: Latest stable version
- npm: Latest stable version (included with Node.js)
- GameBoost Account: Active seller account on GameBoost
To install this custom node as an npm package, run:
npm i @nskha/n8n-nodes-gameboost
Once installed, ensure that n8n detects external modules according to their documentation.
- Add the Node to Your Workflow
After installing the package, you can add the Gameboost node in the n8n Editor UI. - Configure Credentials
Configure any necessary credentials required for interacting with GameBoost.
Refer to n8n credentials documentation to learn how to add credentials to your node. - Run Your Workflow
Trigger or manually start your n8n workflow to perform account operations (list, delete, create) on GameBoost.
If you want to modify or extend this node:
-
Clone this repository: git clone https://github.com/Automations-Project/n8n-nodes-gameboost.git
-
Install dependencies: npm install
-
Navigate to
~/.n8n/custom
directory (create it if it doesn't exist) and initialize a new npm project: npm init -y -
Run the development server: npm run start:dev