Overview
A webhook is a way for MinChat to notify your server in real-time when a specific event occurs.
When webhooks are enabled in the minchat dashboard, your server will receive HTTP POST requests from minchat servers notifying you about events that happen in your application between your users.
Webhook Events
MinChat supports the following webhook events
Message Sent
Is triggered when a message is sent by a user.
payload
Field
Type
Description
text
string
The content of the message
chat_id
string
The id of the conversation this message was sent to
metadata
json object
an optional key value pair for any additional message information.
chat_metadata
json object
an optional key value pair for any additional chat information.
New Daily Active User
Is triggered when there is a new daily active user.
The payload is a User
object
Last updated