## Stop typing indicator **delete** `/v3/chats/{chatId}/typing` Stop the typing indicator for the chat. Typing indicators are automatically stopped when a message is sent, so calling this endpoint after sending a message is unnecessary. See the `POST` endpoint above for behavior details and limitations. **Note:** Group chats are not supported and will return a `403` error. ### Path Parameters - `chatId: string` ### Example ```http curl https://api.linqapp.com/api/partner/v3/chats/$CHAT_ID/typing \ -X DELETE \ -H "Authorization: Bearer $LINQ_API_V3_API_KEY" ``` #### Response ```json { "error": { "status": 400, "code": 1002, "message": "Phone number must be in E.164 format" }, "success": false } ```