2017-12-30 02:57:12 +01:00
|
|
|
# Render message
|
|
|
|
|
|
|
|
Render a message to HTML.
|
|
|
|
|
|
|
|
`POST {{ api_url }}/v1/messages/render`
|
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
<div class="code-section" markdown="1">
|
|
|
|
<ul class="nav">
|
|
|
|
<li data-language="python">Python</li>
|
2018-01-13 22:26:21 +01:00
|
|
|
<li data-language="javascript">JavaScript</li>
|
2018-01-22 22:49:30 +01:00
|
|
|
<li data-language="curl">curl</li>
|
2017-12-30 02:57:12 +01:00
|
|
|
</ul>
|
|
|
|
<div class="blocks">
|
|
|
|
|
|
|
|
<div data-language="curl" markdown="1">
|
|
|
|
|
|
|
|
```
|
|
|
|
curl {{ api_url }}/v1/messages/render \
|
|
|
|
-u BOT_EMAIL_ADDRESS:BOT_API_KEY \
|
|
|
|
-d "content=**foo**"
|
|
|
|
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="python" markdown="1">
|
|
|
|
```python
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import zulip
|
|
|
|
|
2018-01-03 21:59:01 +01:00
|
|
|
# Download ~/zuliprc-dev from your dev server
|
|
|
|
client = zulip.Client(config_file="~/zuliprc-dev")
|
2017-12-30 02:57:12 +01:00
|
|
|
|
|
|
|
# Render a message
|
|
|
|
print(client.render_message({"content": "**foo**"}))
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
2018-01-13 22:26:21 +01:00
|
|
|
<div data-language="javascript" markdown="1">
|
|
|
|
More examples and documentation can be found [here](https://github.com/zulip/zulip-js).
|
|
|
|
```js
|
|
|
|
const zulip = require('zulip-js');
|
|
|
|
|
|
|
|
// Download zuliprc-dev from your dev server
|
|
|
|
const config = {
|
|
|
|
zuliprc: 'zuliprc-dev',
|
|
|
|
};
|
|
|
|
|
|
|
|
zulip(config).then((client) => {
|
|
|
|
// Render a message
|
|
|
|
const params = {
|
|
|
|
content: '**foo**',
|
|
|
|
};
|
|
|
|
|
|
|
|
client.messages.render(params).then(console.log);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
2017-12-30 02:57:12 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2018-01-20 22:03:05 +01:00
|
|
|
## Arguments
|
|
|
|
|
|
|
|
{generate_api_arguments_table|arguments.json|render-message.md}
|
|
|
|
|
2017-12-30 02:57:12 +01:00
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `rendered`: The rendered HTML.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
'result':'success',
|
|
|
|
'msg':'',
|
|
|
|
'rendered':'<p><strong>foo</strong></p>'
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
A typical JSON response for when the required argument `content`
|
|
|
|
is not supplied:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
'code':'REQUEST_VARIABLE_MISSING',
|
|
|
|
'result':'error',
|
|
|
|
'msg':"Missing 'content' argument",
|
|
|
|
'var_name':'content'
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
{!invalid-api-key-json-response.md!}
|