# Send a typing indicator

`POST /chat.typing`

## Description

Notify other chat participants that you are working on a response.
If they have the chat open, they will see "(Bot name) is typing...".

**Access:** Organization only.

**Required scope:** `chat:send_message` or `chat:write`

---

**OpenAPI Spec:** [chat.json](https://developer.ro.am/chat.json)

## Authentication

```
Authorization: Bearer YOUR_API_KEY
```

## Request Body

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `chat` | TaggedUUID | Yes | The chat address to fetch information for. |
| `threadTimestamp` | integer | No | Timestamp of the message being replied to. |

**TaggedUUID**:

A UUID prefixed by a tag identifying the specific type of object
### Example Request

```json
{
  "chat": "C-295155ae-7df5-4ed5-9ebc-89a170559c81"
}
```

## Responses

### 200 - Typing indicator successfully sent

### 400 - Bad request.

### 401 - Presented invalid authentication credentials.

### 405 - An unsupported method was requested.

### 500 - An internal error occured.

---

*Machine-readable API documentation.*
*Full documentation: https://developer.ro.am/docs/chat-api/chat-typing*
