2018-08-09 20:27:12 +02:00
|
|
|
# Set "typing" status
|
|
|
|
|
|
|
|
Send an event indicating that the user has started or stopped typing
|
|
|
|
on their client. See
|
|
|
|
[the typing notification docs](https://zulip.readthedocs.io/en/latest/subsystems/typing-indicators.html)
|
|
|
|
for details on Zulip's typing notifications protocol.
|
|
|
|
|
|
|
|
`POST {{ api_url }}/v1/typing`
|
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
2018-08-09 20:27:12 +02:00
|
|
|
|
|
|
|
{generate_code_example(python)|/typing:post|example}
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|js}
|
2018-08-09 20:27:12 +02:00
|
|
|
|
|
|
|
More examples and documentation can be found [here](https://github.com/zulip/zulip-js).
|
|
|
|
```js
|
|
|
|
const zulip = require('zulip-js');
|
|
|
|
|
2019-01-07 14:27:58 +01:00
|
|
|
// Pass the path to your zuliprc file here.
|
2018-08-09 20:27:12 +02:00
|
|
|
const config = {
|
2019-01-07 14:27:58 +01:00
|
|
|
zuliprc: 'zuliprc',
|
2018-08-09 20:27:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const typingParams = {
|
|
|
|
op: 'start',
|
|
|
|
to: ['iago@zulip.com', 'polonius@zulip.com'],
|
|
|
|
};
|
|
|
|
|
|
|
|
zulip(config).then((client) => {
|
|
|
|
// The user has started to type in the group PM with Iago and Polonius
|
|
|
|
return client.typing.send(typingParams);
|
|
|
|
}).then(console.log);
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|curl}
|
|
|
|
|
2019-05-16 22:38:53 +02:00
|
|
|
``` curl
|
2018-09-17 16:27:32 +02:00
|
|
|
curl -X POST {{ api_url }}/v1/typing \
|
|
|
|
-u BOT_EMAIL_ADDRESS:BOT_API_KEY \
|
|
|
|
-d "op=start" \
|
|
|
|
-d 'to="iago@zulip.com","polonius@zulip.com"'
|
|
|
|
```
|
2018-08-09 20:27:12 +02:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2018-08-09 20:27:12 +02:00
|
|
|
|
|
|
|
## Arguments
|
|
|
|
|
|
|
|
{generate_api_arguments_table|zulip.yaml|/typing:post}
|
|
|
|
|
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
|
|
|
{generate_code_example|/typing:post|fixture(200)}
|