> ## Documentation Index
> Fetch the complete documentation index at: https://docs.osis.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop typing

> POST /api/v1/comms/conversations/:id/typing — clear a typing indicator.

Clear the typing indicator for a conversation. Always stop typing after a reply, error, or cancellation so the contact is not left seeing stale dots.

**Scope:** `comms_send`

```bash theme={null}
curl -X POST "https://osis.co/api/v1/comms/conversations/$CONVERSATION_ID/typing"   -H "Authorization: Bearer $COMMS_API_KEY"   -H "Content-Type: application/json"   -d '{ "active": false }'
```

```json theme={null}
{ "ok": true, "active": false, "skipped": false, "reason": null }
```

This endpoint is safe to call repeatedly. See [Start typing](/messages-api/start-typing).
