zulip/templates/zerver/api/typing.md

61 lines
1.3 KiB
Markdown
Raw Normal View History

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
{start_tabs}
{tab|python}
2018-08-09 20:27:12 +02:00
{generate_code_example(python)|/typing:post|example}
{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');
// Pass the path to your zuliprc file here.
2018-08-09 20:27:12 +02:00
const config = {
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);
```
{tab|curl}
``` curl
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
{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)}