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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@chat21/chat21-http-server

v0.2.37

Published

Chat21 HTTP APIs

Downloads

47

Readme

Chat21 HTTP API Application

🚀 Do you want to install Tiledesk on your server with just one click?

Use Docker Compose Tiledesk installation guide

Chat21 native REST API server

REST API

Below are described the REST API of Chat21

Authentication

Before using these APIs you need an authentication JWT token

JWT Authentication

Coming soon

Send a message

== Send a Message ==

curl --location --request POST 'http://localhost:8004/api/APP_ID/messages' \
--header 'Authorization: JWT-TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
 "sender_fullname": "SENDER FULLNAME",
 "recipient_id": "RECIPIENT-UUID",
 "recipient_fullname": "RECIPIENT FULLNAME",
 "text": "hello",
 "type": "text",
 "channel_type": "direct"
}'

Where :

  • JWT-TOKEN: the authorization JWT token
  • sender_fullname: is the Sender Fullname. Ex: Andrea Leo
  • recipient_id: it's the recipient id of the message. The recipient id is the user id for direct message and the group id for group messaging.
  • recipient_fullname: is the Recipient Fullname. Ex: Andrea Sponziello
  • text: it's the message text
  • channel_type: it's the channel type. "direct" value for one-to-one direct message and "group" for group messaging. Available values: direct (default) and group.
  • type: it's the message type. "text" value for textual message and "image" for sending image message(you must set metadata field). Available values: text (default) and image.
  • ATTRIBUTES: it's the message custom attributes. Example: attributes = {"custom_attribute1": "value1"}.
  • METADATA: it's the image properties: src is the absolute source path of the image, width is the image width, height is the image height. Example: metadata = { "src": "https://www.tiledesk.com/wp-content/uploads/2018/03/tiledesk-logo.png", "width": 200, "height": 200 }
  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value

Create a Group

Create a chat user's group making the following POST call :

  curl -X POST \
      -H 'Content-Type: application/json' \
      -H "Authorization: JWT-TOKEN" \
      -d '{"group_name": "<GROUP_NAME>", "group_members": {"<MEMBER_ID>":1}}' \
      'http://localhost:8004/api/<APP_ID>/groups'

Where:

  • GROUP_NAME: it's the new group name
  • MEMBER_ID: it's the user ids of the group members
  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value

Join a Group

With this API the user can join (become a member) of an existing group:

  curl -X POST \
      -H 'Content-Type: application/json' \
      -H "Authorization: JWT-TOKEN" \
      -d '{"member_id": "<MEMBER_ID>"}' \
      'http://localhost:8004/api/<APP_ID>/groups/<GROUP_ID>/members'

Where :

  • MEMBER_ID: it's the user id of the user you want to joing (become a member)
  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value
  • GROUP_ID: it's the existing group id

Leave a Group

With this API the user can leave an existing group:

  curl -X DELETE \
      -H 'Content-Type: application/json' \
      -H "Authorization: JWT-TOKEN" \
      -d '{"member_id": "<MEMBER_ID>"}' \
      'http://localhost:8004/api/<APP_ID>/groups/<GROUP_ID>/members/<MEMBERID'

Where :

  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value
  • GROUP_ID: it's the existing group id
  • MEMBER_ID: it's the user id of the user you want to leave a group

Set Group members

With this API you can set the group members

    curl -X PUT \
      -H 'Content-Type: application/json' \
      -H "Authorization: JWT-TOKEN" \
      -d '{"members": {"<member_id1>":1},{"<member_id2>":1}}' \
      'http://localhost:8004/api/<APP_ID>/groups/<GROUP_ID>/members'

Where :

  • MEMBER_IDs: it's the user ids of the group members
  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value
  • GROUP_ID: it's the existing group id

Archive or delete a conversation

Archive or delete a conversation from the personal timeline specified by a RECIPIENT_ID

    curl  -X DELETE \
       -H 'Content-Type: application/json' \
       -H "Authorization: JWT-TOKEN" \
       http://localhost:8004/api/<APP_ID>/conversations/<RECIPIENT_ID>?delete=<BOOLEAN_VALUE>

Where :

  • APP_ID: It's the appid usend on multitenant environment. Use "default" as default value
  • RECIPIENT_ID: it's the recipient id
  • delete: (Optional) if true permanently deletes the conversation, if false archives the conversation

Docker deploy

build -t chat21/chat21-http-server:latest .

docker run chat21/chat21-server:latest

docker push chat21/chat21-http-server:latest