npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-channel-talk

v0.2.2

Published

Channel Talk n8n nodes

Downloads

91

Readme

n8n-nodes-channel-talk

This is an n8n community node. It lets you work with Channel Talk in your n8n workflows: send messages and retrieve channel info.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

  • Bot
    • List (GET /open/v5/bots)
    • Create or Update (POST /open/v5/bots)
    • Delete (DELETE /open/v5/bots/{botId})
  • Channel
    • Get: Retrieve the channel connected with your API credentials (GET /open/v5/channel)
  • Manager
    • List (GET /open/v5/managers)
    • Get (GET /open/v5/managers/{managerId})
  • Team Chat
    • List (GET /open/v5/groups)
    • Get (GET /open/v5/groups/{groupId})
    • Get by Name (GET /open/v5/groups/@{groupName})
    • Update (PATCH /open/v5/groups/{groupId})
    • Get Sessions (GET /open/v5/groups/{groupId}/sessions)
    • Get Messages (GET /open/v5/groups/{groupId}/messages)
    • Get Messages by Name (GET /open/v5/groups/@{groupName}/messages)
    • Get Messages File (GET /open/v5/groups/{groupId}/messages/file)
    • Get Messages File by Name (GET /open/v5/groups/@{groupName}/messages/file)
    • Create Message - Plain Text (POST /open/v5/groups/{groupId}/messages)
    • Create Message - Plain Text by Name (POST /open/v5/groups/@{groupName}/messages)
    • Create Message - Blocks (POST /open/v5/groups/{groupId}/messages)
    • Create Message - Blocks by Name (POST /open/v5/groups/@{groupName}/messages)
  • User
    • Get by User ID (GET /open/v5/users/{userId})
    • Get by Member ID (GET /open/v5/users/@{memberId})
    • Create (POST /open/v5/users)
    • Create or Update (PUT /open/v5/users/@{memberId})
    • Update (PATCH /open/v5/users/{userId})
    • Delete by User ID (DELETE /open/v5/users/{userId})
    • Delete by Member ID (DELETE /open/v5/users/@{memberId})
    • Block (POST /open/v5/users/{userId}/block)
    • Unblock (DELETE /open/v5/users/{userId}/block)
    • Issue User Token by User ID (PUT /open/v5/users/{userId}/user-token/issue)
    • Issue User Token by Member ID (PUT /open/v5/users/@{memberId}/user-token/issue)
    • Issue Session JWT (PUT /open/v5/users/@{memberId}/session-jwt/issue)
    • Touch (POST /open/v5/users/{userId}/touch)
  • User Chat
    • List (GET /open/v5/user-chats)
    • Get (GET /open/v5/user-chats/{userChatId})
    • Update (PATCH /open/v5/user-chats/{userChatId})
    • Delete (DELETE /open/v5/user-chats/{userChatId})
    • Open (PUT /open/v5/user-chats/{userChatId}/open)
    • Close (PATCH /open/v5/user-chats/{userChatId}/close)
    • Snooze (PUT /open/v5/user-chats/{userChatId}/snooze)
    • Remove (DELETE /open/v5/user-chats/{userChatId}/remove)
    • Assign to Manager (PATCH /open/v5/user-chats/{userChatId}/assign-to/managers/{managerId})
    • Invite (PATCH /open/v5/user-chats/{userChatId}/invite)
    • Get Cases (GET /open/v5/user-chats/cases)
    • Get Sessions (GET /open/v5/user-chats/{userChatId}/sessions)
    • Get Messages (GET /open/v5/user-chats/{userChatId}/messages)
    • Get Messages File (GET /open/v5/user-chats/{userChatId}/messages/file)
    • Create Message (POST /open/v5/user-chats/{userChatId}/messages)
    • Get Meets Messages (GET /open/v5/user-chats/{userChatId}/meets/{messageId}/messages)
    • Get Meets Recording (GET /open/v5/user-chats/{userChatId}/meets/{messageId}/recording)
  • Webhook
    • List (GET /open/v5/webhooks)
    • Get (GET /open/v5/webhooks/{webhookId})
    • Create (POST /open/v5/webhooks)
    • Update (PATCH /open/v5/webhooks/{webhookId})
    • Delete (DELETE /open/v5/webhooks/{webhookId})

Credentials

Create Open API credentials in Channel Talk and set the following fields:

  • Access Key
  • Access Secret

These are sent as x-access-key and x-access-secret headers in each request.

Refer to the Channel developers documentation for details: https://developers.channel.io/docs/authentication-2

Compatibility

Compatible with [email protected] or later

Resources