Typing Indicator
Typing Indicator callbacks are triggered to notify your application that an end user has begun typing a reply. These callbacks provide detailed information, including the sender and timestamps.
Typing Indicator Webhook Payload
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
type | string | true | Always TYPING_INDICATOR | TYPING_INDICATOR |
direction | string | true | Always Outbound | Outbound |
channel | string | true | Always rcs | rcs |
to | string | false | The sender the message was sent to | exampleSender |
from | string | false | The phone number the message was sent from (E164 format with no plus) | 1987654321 |
error | object | true | The message error, if applicable | { "code": "0", "description": "None" } |
error.code | string | true | Detailed error code | 0 |
error.description | string | true | Detailed error description | no error |
time | string | true | The time of the event was received in ISO 8601 format | 2025-12-01T15:30:00Z |
api_version | string | true | The version of the API the message was sent on | 1 |