Skip to main content
POST
/
threads
/
{threadId}
/
typing
Send typing indicator
curl --request POST \
  --url https://inboxapp.com/api/v1/threads/{threadId}/typing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "status": "sent",
  "reason": "rateLimited"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

threadId
string
required

Body

application/json

The body is of type object.

Response

200 - application/json

OK

status
enum<string>
required

Whether the typing indicator was sent or skipped. If skipped, the reason will be provided.

Available options:
sent,
skipped
Example:

"sent"

reason
enum<string>

The reason the typing indicator was skipped. Only present when status is 'skipped'.

Available options:
rateLimited,
typingDisabled,
unsupported
Example:

"rateLimited"