AI Chatbot Platform API v3
AI Chatbot
Version 3

Stop typing indicators

Copy link

The typing indicator API allows you to visually display when either the bot or another user is in the process of composing a message. This feature enhances real-time engagement and creates a more dynamic conversation. The API supports two key states: The API supports two key states: start, which signals that a user is typing, and stop, which indicates that they stopped typing. This API request is made when a user stops typing and the indicator is no longer needed.


HTTP request

Copy link
DELETE https://api-{application_id}.sendbird.com/v3/group_channels/{channel_url}/typing

Request body

Copy link

The following table lists the properties of an HTTP request that this action supports.

Required
Property nameTypeDescription

user_ids

array of strings

Specifies an array of IDs of users who are to stop using the typing indicator. You can list up to ten user IDs.

{
    "user_ids": ["kay", "lucha"]
}

Responses

Copy link

If successful, this action returns an empty response body.

In the case of an error, an error object like below is returned. See the error codes section for more details.

{
    "message": "\"User\" not found.",
    "code": 400201,
    "error": true
}