2018-05-15 18:55:39 +02:00
# This file contains the API definitions for the Zulip REST API.
2017-05-22 18:33:53 +02:00
#
2020-03-27 01:32:21 +01:00
# For details on the OpenAPI specification, see https://swagger.io/specification
2017-02-24 03:39:44 +01:00
#
# Our own documentation lives at
#
2019-05-30 00:39:50 +02:00
# https://zulip.readthedocs.io/en/latest/documentation/openapi.html
2017-02-24 03:39:44 +01:00
#
2018-05-15 18:55:39 +02:00
openapi : 3.0 .1
2017-05-22 18:33:53 +02:00
info :
2018-05-15 18:55:39 +02:00
version : 1.0 .0
2017-05-22 18:33:53 +02:00
title : Zulip REST API
2020-04-16 13:20:32 +02:00
description : |
Powerful open source group chat
2017-05-22 18:33:53 +02:00
contact :
2018-05-15 18:55:39 +02:00
url : https://zulipchat.com
2017-05-22 18:33:53 +02:00
license :
name : Apache 2.0
url : https://www.apache.org/licenses/LICENSE-2.0.html
2018-05-15 18:55:39 +02:00
servers :
2018-06-21 02:03:15 +02:00
- url : 'https://your.zulip.server/api/v1'
2019-12-04 12:27:15 +01:00
security :
- basicAuth : [ ]
2018-05-15 18:55:39 +02:00
#######################
2017-05-22 18:33:53 +02:00
# Endpoint definitions
2018-05-15 18:55:39 +02:00
#######################
2017-05-22 18:33:53 +02:00
paths :
2020-03-08 18:06:11 +01:00
/fetch_api_key :
post :
description : |
Given a username and password, fetch the user's API key.
Used to authenticate the mobile and terminal apps when the server
has EmailAuthBackend or LDAPAuthBackend enabled.
operationId : zerver.views.auth.api_fetch_api_key
parameters :
- name : username
in : query
description : |
2020-04-16 13:20:32 +02:00
The username to be used for authentication (typically, the email
address, but it could be an LDAP username).
2020-03-08 18:06:11 +01:00
schema :
type : string
required : true
- name : password
in : query
schema :
type : string
description : |
The user's Zulip password (or LDAP password, if LDAP authentication is in use).
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/ApiKeyResponse'
2018-06-21 15:23:10 +02:00
/dev_fetch_api_key :
post :
2020-04-16 13:20:32 +02:00
description : |
Gather a token bound to a user account, to identify and authenticate
them when making operations with the API. This token must be used as the
password in the rest of the endpoints that require Basic authentication.
2018-06-21 15:23:10 +02:00
parameters :
- name : username
in : query
2020-04-16 13:20:32 +02:00
description : |
The email address for the user that owns the API key.
2018-06-21 15:23:10 +02:00
schema :
type : string
example : iago@zulip.com
required : true
2019-12-04 12:27:15 +01:00
security : [ ]
2018-06-21 15:23:10 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/ApiKeyResponse'
2018-06-21 01:05:11 +02:00
/events :
get :
2020-04-16 13:20:32 +02:00
description : |
Receive new events from [a registered event queue](/api/register-queue).
2018-06-21 01:05:11 +02:00
parameters :
- name : queue_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The ID of a queue that you registered via `POST /api/v1/register` (see
[ Register a queue](/api/register-queue)).
2018-06-21 01:05:11 +02:00
schema :
type : string
example : 1375801870 : 2942
- name : last_event_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The highest event ID in this queue that you've received and
wish to acknowledge. See the [code for
`call_on_each_event`](https://github.com/zulip/python-zulip-api/blob/master/zulip/zulip/__init__.py)
in the [zulip Python
module](https://github.com/zulip/python-zulip-api) for an
example implementation of correctly processing each event
2018-06-21 01:05:11 +02:00
exactly once.
schema :
type : integer
example : -1
- name : dont_block
in : query
2020-04-16 13:20:32 +02:00
description : |
Set to `true` if the client is requesting a nonblocking reply. If not
specified, the request will block until either a new event is available
or a few minutes have passed, in which case the server will send the
client a heartbeat event.
2018-06-21 01:05:11 +02:00
schema :
type : boolean
default : false
example : true
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-21 01:05:11 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
events :
type : array
2020-04-16 13:20:32 +02:00
description : |
An array of `event` objects (possibly zero-length if `dont_block` is
set) of events with IDs newer than `last_event_id`. Event IDs are
guaranteed to be increasing, but they are not guaranteed to be
consecutive.
2020-04-18 12:46:15 +02:00
items :
type : object
2018-06-21 01:05:11 +02:00
- example :
{
"events": [
{
"id": 0 ,
"message": {
"avatar_url": "https://url/for/othello-bots/avatar" ,
"client": "website" ,
2018-10-23 00:42:54 +02:00
"content": "I come not, friends, to steal away your hearts." ,
2018-06-21 01:05:11 +02:00
"content_type": "text/x-markdown" ,
"display_recipient": "Denmark" ,
"id": 12345678 ,
"recipient_id": 12314 ,
"sender_email": "othello-bot@example.com" ,
"sender_full_name": "Othello Bot" ,
"sender_id": 13215 ,
"sender_realm_str": "example" ,
"sender_short_name": "othello-bot" ,
2019-12-30 23:06:50 +01:00
"topic": "Castle" ,
2020-02-07 13:09:17 +01:00
"topic_links": [ ] ,
2018-06-21 01:05:11 +02:00
"timestamp": 1375978403 ,
"type": "stream"
},
"type": "message"
},
{
"id": 1 ,
"message": {
"avatar_url": "https://url/for/othello-bots/avatar" ,
"client": "website" ,
2018-10-23 00:42:54 +02:00
"content": "With mirth and laughter let old wrinkles come." ,
2018-06-21 01:05:11 +02:00
"content_type": "text/x-markdown" ,
"display_recipient": [
{
"email": "hamlet@example.com" ,
"full_name": "Hamlet of Denmark" ,
"id": 31572 ,
"short_name": "hamlet"
}
] ,
"id": 12345679 ,
"recipient_id": 18391 ,
"sender_email": "othello-bot@example.com" ,
"sender_full_name": "Othello Bot" ,
"sender_id": 13215 ,
"sender_realm_str": "example" ,
"sender_short_name": "othello-bot" ,
"subject": "" ,
2020-02-07 13:09:17 +01:00
"topic_links": [ ] ,
2018-06-21 01:05:11 +02:00
"timestamp": 1375978404 ,
"type": "private"
},
"type": "message"
}
] ,
"msg": "" ,
"result": "success"
}
'400' :
2018-06-21 02:03:15 +02:00
description : Bad request.
2018-06-21 01:05:11 +02:00
content :
application/json :
schema :
$ref : '#/components/schemas/BadEventQueueIdError'
2018-06-21 01:28:33 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete a previously registered queue.
2018-06-21 01:28:33 +02:00
parameters :
- name : queue_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The ID of a queue that you registered via `POST /api/v1/register`(see
[ Register a queue](/api/register-queue).
2018-06-21 01:28:33 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2018-06-21 01:28:33 +02:00
example : 1375801870 : 2942
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
'400' :
description : Bad request.
content :
application/json :
schema :
$ref : '#/components/schemas/BadEventQueueIdError'
2018-06-18 19:20:55 +02:00
/get_stream_id :
get :
2020-04-16 13:20:32 +02:00
description : |
Get the unique ID of a given stream.
2018-06-18 19:20:55 +02:00
parameters :
- name : stream
in : query
2020-04-16 13:20:32 +02:00
description : |
The name of the stream to retrieve the ID for.
2018-06-18 19:20:55 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2018-06-18 19:20:55 +02:00
example : Denmark
required : true
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-18 19:20:55 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
stream_id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The ID of the given stream.
2018-06-18 19:20:55 +02:00
- example :
{
"msg": "" ,
"result": "success" ,
"stream_id": 15
}
'400' :
2018-06-21 02:03:15 +02:00
description : Bad request.
2018-06-18 19:20:55 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid stream name 'nonexistent'" ,
"result": "error"
}
2018-08-11 13:38:55 +02:00
/mark_all_as_read :
post :
2020-04-16 13:20:32 +02:00
description : |
Mark all the user's unread messages as read. This is often called
"bankruptcy" in Zulip.
2018-08-11 13:38:55 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
/mark_stream_as_read :
post :
2020-04-16 13:20:32 +02:00
description : |
Mark all the unread messages in a stream as read.
2018-08-11 13:38:55 +02:00
parameters :
- name : stream_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The ID of the stream whose messages should be marked as read.
2018-08-11 13:38:55 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
/mark_topic_as_read :
post :
2020-04-16 13:20:32 +02:00
description : |
Mark all the unread messages in a topic as read.
2018-08-11 13:38:55 +02:00
parameters :
- name : stream_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The ID of the stream that contains the topic.
2018-08-11 13:38:55 +02:00
schema :
type : integer
example : 42
required : true
- name : topic_name
in : query
2020-04-16 13:20:32 +02:00
description : |
The name of the topic whose messages should be marked as read.
2018-08-11 13:38:55 +02:00
schema :
type : string
example : new coffee machine
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2018-06-18 18:15:08 +02:00
/messages :
2018-06-23 17:31:12 +02:00
get :
2020-04-16 13:20:32 +02:00
description : |
Fetch messages that match a specific narrow.
2018-06-23 17:31:12 +02:00
parameters :
- name : anchor
in : query
2020-03-27 01:45:03 +01:00
description : |
2020-04-16 13:20:32 +02:00
Integer message ID to anchor fetching of new messages. Supports special
string values for when the client wants the server to compute the anchor
to use :
2020-03-27 01:45:03 +01:00
* `newest` : The most recent message.
* `oldest` : The oldest message.
* `first_unread` : The oldest unread message matching the
query, if any; otherwise, the most recent message.
2020-01-29 02:58:17 +01:00
The special values of `'newest'` and `'oldest'` are also supported
for anchoring the query at the most recent or oldest messages.
2020-03-27 01:45:03 +01:00
**Changes**: String values are new in Zulip 2.2. The
`first_unread` functionality was supported in Zulip 2.1.x
and older by not sending anchor and using use_first_unread_anchor.
In Zulip 2.1.x and older, `oldest` can be emulated with
`anchor=0`, and `newest` with `anchor=10000000000000000`
(that specific large value works around a bug in Zulip
2.1 .x and older in the `found_newest` return value).
2018-06-23 17:31:12 +02:00
schema :
2020-01-28 06:37:25 +01:00
oneOf :
- type : string
- type : integer
2018-06-23 17:31:12 +02:00
example : 42
- name : num_before
in : query
2020-04-16 13:20:32 +02:00
description : |
The number of messages with IDs less than the anchor to retrieve.
2018-06-23 17:31:12 +02:00
schema :
type : integer
example : 4
required : true
- name : num_after
in : query
2020-04-16 13:20:32 +02:00
description : |
The number of messages with IDs greater than the anchor to retrieve.
2018-06-23 17:31:12 +02:00
schema :
type : integer
example : 8
required : true
- name : narrow
in : query
2020-04-16 13:20:32 +02:00
description : |
The narrow where you want to fetch the messages from. See how to
[ construct a narrow](/api/construct-narrow).
2018-06-23 17:31:12 +02:00
schema :
type : array
items :
type : object
default : [ ]
2019-08-02 14:47:18 +02:00
example : [ {"operand": "Denmark", "operator": "stream" }]
2018-06-23 17:31:12 +02:00
- name : client_gravatar
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether the client supports computing gravatars URLs. If
enabled, `avatar_url` will be included in the response only
if there is a Zulip avatar, and will be `null` for users who
are using gravatar as their avatar. This option
significantly reduces the compressed size of user data,
since gravatar URLs are long, random strings and thus do not
compress well.
2018-06-23 17:31:12 +02:00
schema :
type : boolean
default : false
example : true
- name : apply_markdown
in : query
2020-04-16 13:20:32 +02:00
description : |
If `true`, message content is returned in the rendered HTML
format. If `false`, message content is returned in the raw
markdown-format text that user entered.
2018-06-23 17:31:12 +02:00
schema :
type : boolean
default : true
example : false
2020-03-27 01:45:03 +01:00
- name : use_first_unread_anchor
in : query
description : |
Legacy way to specify `anchor="first_unread"` in Zulip 2.1.x and older.
Whether to use the (computed by the server) first unread message
matching the narrow as the `anchor`. Mutually exclusive with `anchor`.
**Changes**: Deprecated in Zulip 2.2, replaced by
`anchor="first_unread"` instead.
schema :
type : boolean
default : false
example : true
2018-06-23 17:31:12 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
anchor :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The same `anchor` specified in the request (or the computed one, if
`use_first_unread_anchor` is `true`).
2018-06-23 17:31:12 +02:00
found_newest :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether the `messages` list includes the very newest messages matching
the narrow (used by clients that paginate their requests to decide
whether there are more messages to fetch).
2018-06-23 17:31:12 +02:00
found_oldest :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether the `messages` list includes the very oldest messages matching
the narrow (used by clients that paginate their requests to decide
whether there are more messages to fetch).
2018-06-23 17:31:12 +02:00
found_anchor :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether the anchor message is included in the
response. If the message with the ID specified
in the request does not exist or did not match
the narrow, this will be false.
2018-09-19 14:23:02 +02:00
history_limited :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether the message history was limited due to
plan restrictions. This flag is set to `true`
only when the oldest messages(`found_oldest`)
2018-09-19 14:23:02 +02:00
matching the narrow is fetched.
2018-06-23 17:31:12 +02:00
messages :
type : array
items :
type : object
- example :
{
"anchor": 21 ,
"found_newest": true ,
"found_anchor": true ,
"result": "success" ,
"msg": "" ,
"messages": [
{
"subject": "" ,
"sender_realm_str": "zulip" ,
"type": "private" ,
"content": "<p>Security experts agree that relational algorithms are an interesting new topic in the field of networking, and scholars concur.</p>" ,
"flags": [
"read"
] ,
"id": 16 ,
"display_recipient": [
{
"short_name": "hamlet" ,
"id": 4 ,
"is_mirror_dummy": false ,
"email": "hamlet@zulip.com" ,
"full_name": "King Hamlet"
},
{
"short_name": "iago" ,
"id": 5 ,
"is_mirror_dummy": false ,
"email": "iago@zulip.com" ,
"full_name": "Iago"
},
{
"short_name": "prospero" ,
"id": 8 ,
"is_mirror_dummy": false ,
"email": "prospero@zulip.com" ,
"full_name": "Prospero from The Tempest"
}
] ,
"content_type": "text/html" ,
"is_me_message": false ,
"sender_short_name": "hamlet" ,
"timestamp": 1527921326 ,
"sender_id": 4 ,
"sender_full_name": "King Hamlet" ,
"recipient_id": 27 ,
2020-02-07 13:09:17 +01:00
"topic_links": [ ] ,
2018-06-23 17:31:12 +02:00
"client": "populate_db" ,
"avatar_url": "https://secure.gravatar.com/avatar/6d8cad0fd00256e7b40691d27ddfd466?d=identicon&version=1" ,
"submessages": [ ] ,
"sender_email": "hamlet@zulip.com" ,
"reactions": [ ]
},
{
"subject": "Verona3" ,
"stream_id": 5 ,
"sender_realm_str": "zulip" ,
"type": "stream" ,
"content": "<p>Wait, is this from the frontend js code or backend python code</p>" ,
"flags": [
"read"
] ,
"id": 21 ,
"display_recipient": "Verona" ,
"content_type": "text/html" ,
"is_me_message": false ,
"sender_short_name": "hamlet" ,
"timestamp": 1527939746 ,
"sender_id": 4 ,
"sender_full_name": "King Hamlet" ,
"recipient_id": 20 ,
2020-02-07 13:09:17 +01:00
"topic_links": [ ] ,
2018-06-23 17:31:12 +02:00
"client": "populate_db" ,
"avatar_url": "https://secure.gravatar.com/avatar/6d8cad0fd00256e7b40691d27ddfd466?d=identicon&version=1" ,
"submessages": [ ] ,
"sender_email": "hamlet@zulip.com" ,
"reactions": [ ]
}
]
}
2018-06-18 18:15:08 +02:00
post :
2020-04-16 13:20:32 +02:00
description : |
Send a message.
2018-06-18 18:15:08 +02:00
parameters :
- name : type
in : query
2020-04-16 13:20:32 +02:00
description : |
The type of message to be sent. `private` for a private message and
`stream` for a stream message.
2018-06-18 18:15:08 +02:00
schema :
type : string
enum :
2018-06-21 02:03:15 +02:00
- private
- stream
2018-06-18 18:15:08 +02:00
example : private
required : true
- name : to
in : query
2020-03-27 02:02:20 +01:00
description : |
2020-04-16 13:20:32 +02:00
For stream messages, either the name or integer ID of the stream. For
private messages, either a list containing integer user IDs or a list
containing string email addresses.
2020-03-27 02:02:20 +01:00
**Changes**: Support using user/stream IDs was added in Zulip 2.0.0.
2018-06-18 18:15:08 +02:00
schema :
type : string
2020-03-06 08:44:00 +01:00
example : [ 9 , 10 ]
2018-06-18 18:15:08 +02:00
required : true
2019-07-04 08:15:10 +02:00
- name : topic
2018-06-18 18:15:08 +02:00
in : query
2020-04-16 13:20:32 +02:00
description : |
The topic of the message. Only required if `type` is `stream`, ignored
otherwise. Maximum length of 60 characters.
2018-06-18 18:15:08 +02:00
schema :
type : string
default :
example : Castle
- name : content
in : query
2020-04-16 13:20:32 +02:00
description : |
The content of the message. Maximum message size of 10000 bytes.
2018-06-18 18:15:08 +02:00
schema :
type : string
example : Hello
required : true
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-18 18:15:08 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The ID assigned to the message sent.
2018-06-18 18:15:08 +02:00
- example :
{
"msg": "" ,
"id": 42 ,
"result": "success"
}
2020-04-17 16:16:43 +02:00
'400' :
2018-06-18 18:15:08 +02:00
description : Bad request.
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- $ref : '#/components/schemas/NonExistingStreamError'
- allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid email 'eeshan@zulip.com'" ,
"result": "error"
}
2017-06-25 21:00:55 +02:00
/messages/{message_id}:
2018-06-23 18:17:05 +02:00
get :
2020-04-16 13:20:32 +02:00
description : |
Get the raw content of a message.
2018-06-23 18:17:05 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The target message's ID.
2018-06-23 18:17:05 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
raw_content :
type : string
2020-04-16 13:20:32 +02:00
description : |
The raw content of the message.
2018-06-23 18:17:05 +02:00
- example :
{
"raw_content": "**Don't** forget your towel!" ,
"result": "success" ,
"msg": ""
}
'400' :
description : Bad request.
content :
application/json :
schema :
$ref : '#/components/schemas/InvalidMessageError'
2017-06-25 16:50:27 +02:00
patch :
2020-04-16 13:20:32 +02:00
description : |
Edit a message that has already been sent.
2017-06-25 16:50:27 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the message that you wish to edit/update.
2018-05-15 18:55:39 +02:00
schema :
type : integer
example : 42
2017-06-25 16:50:27 +02:00
required : true
2019-10-07 13:23:05 +02:00
- name : topic
2017-06-25 16:50:27 +02:00
in : query
2020-04-16 13:20:32 +02:00
description : |
The topic of the message. Only required for stream messages. Maximum
length of 60 characters.
2018-05-15 18:55:39 +02:00
schema :
type : string
default :
example : Castle
2017-06-25 16:50:27 +02:00
- name : propagate_mode
in : query
2020-04-16 13:20:32 +02:00
description : |
"Which message(s) should be edited: just the one indicated in
`message_id`, messages in the same topic that had been sent after this
one, or all of them."
2018-05-15 18:55:39 +02:00
schema :
type : string
enum :
- change_one
- change_later
- change_all
default : change_one
example : change_all
2017-06-25 16:50:27 +02:00
- name : content
in : query
2020-04-16 13:20:32 +02:00
description : |
The content of the message. Maximum message size of 10000 bytes.
2018-05-15 18:55:39 +02:00
schema :
type : string
example : Hello
2020-02-19 01:38:34 +01:00
- name : stream_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The stream ID to move the message(s) to, if moving to another stream.
2020-02-19 01:38:34 +01:00
schema :
type : integer
example : 2
2017-06-27 03:48:27 +02:00
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-05-15 19:28:42 +02:00
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2017-06-27 03:48:27 +02:00
'400' :
description : Bad request.
2018-05-15 18:55:39 +02:00
content :
application/json :
schema :
allOf :
2020-03-15 17:28:23 +01:00
- $ref : '#/components/schemas/CodedError'
2018-05-15 18:55:39 +02:00
- properties :
msg :
enum :
- Your organization has turned off message editing
- You don't have permission to edit this message
- The time limit for editing this message has past
- Nothing to change
- Topic can't be empty
2018-05-15 19:28:42 +02:00
- example :
{
2018-06-06 18:17:58 +02:00
"code": "BAD_REQUEST" ,
"msg": "You don't have permission to edit this message" ,
"result": "error"
2018-05-15 19:28:42 +02:00
}
2018-06-26 16:30:46 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete a message.
2018-06-26 16:30:46 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the message to delete.
2018-06-26 16:30:46 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2020-04-17 16:16:43 +02:00
'400' :
2018-06-26 16:30:46 +02:00
description : Bad request.
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- $ref : '#/components/schemas/InvalidMessageError'
- allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "You don't have permission to delete this message" ,
"result": "error"
}
2018-06-27 22:54:08 +02:00
/messages/{message_id}/history:
get :
2020-04-16 13:20:32 +02:00
description : |
Get the different versions of a previously edited message.
2018-06-27 22:54:08 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the message you want to fetch the history of.
2018-06-27 22:54:08 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
message_history :
type : array
items :
type : object
2020-04-16 13:20:32 +02:00
description : |
A chronologically sorted array of `snapshot`
objects, each one with the values of the
2018-06-27 22:54:08 +02:00
message after the edition.
- example :
{
"message_history": [
{
"content": "Hello!" ,
"topic": "party at my houz" ,
"rendered_content": "<p>Hello!</p>" ,
"timestamp": 1530129122 ,
"user_id": 5
},
{
"topic": "party at my house" ,
"content": "Howdy!" ,
"prev_content": "Hello!" ,
"rendered_content": "<p>Howdy!</p>" ,
"user_id": 5 ,
"prev_rendered_content": "<p>Hello!</p>" ,
"content_html_diff": "<div><p><span class=\"highlight_text_inserted\">Howdy!</span></p> <p><span class=\"highlight_text_deleted\">Hello!</span></p></div>" ,
"prev_topic": "party at my houz" ,
"timestamp": 1530129134
}
] ,
"msg": "" ,
"result": "success"
}
'400' :
description : Bad request.
content :
application/json :
schema :
$ref : '#/components/schemas/InvalidMessageError'
2018-07-03 18:17:23 +02:00
/messages/flags :
post :
2020-04-16 13:20:32 +02:00
description : |
Add or remove flags in a list of messages.
2018-07-03 18:17:23 +02:00
parameters :
- name : messages
in : query
2020-04-16 13:20:32 +02:00
description : |
An array containing the IDs of the target messages.
2018-07-03 18:17:23 +02:00
schema :
type : array
items :
type : integer
example : [ 4 , 8 , 15 ]
required : true
- name : op
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether to `add` the flag or `remove` it.
2018-07-03 18:17:23 +02:00
schema :
type : string
enum :
- add
- remove
example : add
required : true
- name : flag
in : query
2020-04-16 13:20:32 +02:00
description : |
The flag that should be added/removed.
2018-07-03 18:17:23 +02:00
schema :
type : string
example : read
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
messages :
type : array
items :
type : integer
2020-04-16 13:20:32 +02:00
description : |
An array with the IDs of the modified messages.
2018-07-03 18:17:23 +02:00
- example :
{
"msg": "" ,
"messages": [
4 , 18 , 15
] ,
"result": "success"
}
2018-06-18 19:29:12 +02:00
/messages/render :
post :
2020-04-16 13:20:32 +02:00
description : |
Render a message to HTML.
2018-06-18 19:29:12 +02:00
parameters :
2018-06-21 02:03:15 +02:00
- name : content
in : query
2020-04-16 13:20:32 +02:00
description : |
The content of the message.
2018-06-21 02:03:15 +02:00
schema :
type : string
example : '**foo**'
required : true
2019-09-24 20:46:14 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
rendered :
type : string
2020-04-16 13:20:32 +02:00
description : |
The rendered HTML.
2019-09-24 20:46:14 +02:00
- example :
{
"msg": "" ,
"rendered": "<p><strong>foo</strong></p>" ,
"result": "success"
}
/messages/{message_id}/reactions:
post :
2020-04-16 13:20:32 +02:00
description : |
Add an emoji reaction to a message.
2019-09-24 20:46:14 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the message that you want to add an emoji reaction to.
2019-09-24 20:46:14 +02:00
schema :
type : integer
example : 42
required : true
- name : emoji_name
in : query
description : |
2020-04-16 13:20:32 +02:00
Name of the emoji you want to add as as a reaction.
2019-09-24 20:46:14 +02:00
2020-04-16 13:20:32 +02:00
To find an emoji's name, hover over a message to reveal
three icons on the right, then click the smiley face icon.
Images of available reaction emojis appear. Hover over the
emoji you want, and note that emoji's text name.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-02-29 15:02:34 +01:00
example : 'octopus'
2019-09-24 20:46:14 +02:00
required : true
- name : emoji_code
in : query
description : |
2020-04-16 13:20:32 +02:00
An encoded version of the unicode codepoint. For most
clients, you won't need this; it's used to handle a rare
corner case when upvoting a unicode emoji reaction added
previously by another user.
2020-02-29 15:02:34 +01:00
2020-04-16 13:20:32 +02:00
If the existing reaction was added when the Zulip
server was using a previous version of the emoji
data mapping from codepoints to human-readable
names, sending the `emoji_code` in the data for
the original reaction allows the Zulip server to
correctly consider your upvote as an upvote
rather than a reaction with a "diffenent" emoji.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-02-29 15:02:34 +01:00
example : '1f419'
2019-09-24 20:46:14 +02:00
required : false
- name : reaction_type
in : query
description : |
2020-04-16 13:20:32 +02:00
If you are reacting with a [custom emoji](/help/add-custom-emoji), set
`reaction_type` to `realm_emoji`.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-02-29 15:02:34 +01:00
example : 'unicode_emoji'
2019-09-24 20:46:14 +02:00
required : false
responses :
'200' :
2020-03-29 15:55:14 +02:00
$ref : '#/components/responses/SimpleSuccess'
2020-02-29 15:02:34 +01:00
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/CodedError'
2019-09-24 20:46:14 +02:00
- example :
{
2020-02-29 15:02:34 +01:00
"result": "error" ,
"msg": "Invalid emoji code" ,
"code": "BAD_REQUEST"
2019-09-24 20:46:14 +02:00
}
2020-02-29 15:02:34 +01:00
2019-09-24 20:46:14 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete an emoji reaction from a message.
2019-09-24 20:46:14 +02:00
parameters :
- name : message_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the message from which you want to delete the emoji reaction.
2019-09-24 20:46:14 +02:00
schema :
type : integer
2020-03-07 11:20:57 +01:00
example : 41
2019-09-24 20:46:14 +02:00
required : true
- name : emoji_name
in : query
description : |
2020-04-16 13:20:32 +02:00
Name of the emoji you want to delete from a reaction.
2019-09-24 20:46:14 +02:00
2020-04-16 13:20:32 +02:00
To find an emoji's name, hover over a message to
reveal three icons on the right, then click the smiley face icon.
Images of available reaction emojis appear. Hover over the emoji
you want, and note that emoji's text name.
2020-03-07 11:20:57 +01:00
2020-04-16 13:20:32 +02:00
Ignored if emoji_code is also passed.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-03-07 11:20:57 +01:00
example : 'octopus'
required : false
2019-09-24 20:46:14 +02:00
- name : emoji_code
in : query
description : |
2020-04-16 13:20:32 +02:00
Alternative to emoji_name for expressing which emoji to remove. An
encoded version of the unicode codepoint for the emoji you'd like to
remove from the message.
2020-03-07 11:20:57 +01:00
2020-04-16 13:20:32 +02:00
Recommended over using `emoji_name` for Zulip apps
because this more robustly handles changes in the mapping
between user-facing names and aliases for emoji (which change from
time to time) and their unicode codepoints.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-03-07 11:20:57 +01:00
example : '1f419'
2019-09-24 20:46:14 +02:00
required : false
- name : reaction_type
in : query
description : |
2020-04-16 13:20:32 +02:00
When removing a reaction with a [custom emoji](/help/add-custom-emoji),
set `reaction_type` to `realm_emoji`.
2019-09-24 20:46:14 +02:00
schema :
type : string
2020-03-07 11:20:57 +01:00
example : 'unicode_emoji'
2019-09-24 20:46:14 +02:00
required : false
2018-06-18 19:29:12 +02:00
responses :
'200' :
2020-03-29 15:55:14 +02:00
$ref : '#/components/responses/SimpleSuccess'
2020-03-07 11:20:57 +01:00
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/CodedError'
2018-06-18 19:29:12 +02:00
- example :
{
2020-03-07 11:20:57 +01:00
"result": "error" ,
"msg": "Invalid message(s)" ,
"code": "BAD_REQUEST"
2018-06-18 19:29:12 +02:00
}
2018-06-21 03:04:05 +02:00
/user_uploads :
post :
2020-04-16 13:20:32 +02:00
description : |
Upload a single file and get the corresponding URI.
2018-06-21 03:04:05 +02:00
requestBody :
content :
multipart/form-data :
schema :
properties :
filename :
type : string
format : binary
2019-10-16 13:11:07 +02:00
example : /path/to/file
2018-06-21 03:04:05 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
uri :
type : string
2020-04-16 13:20:32 +02:00
description : |
The URI of the uploaded file.
2018-06-21 03:04:05 +02:00
- example :
{
"msg": "" ,
"result": "success" ,
"uri": "/user_uploads/1/4e/m2A3MSqFnWRLUf9SaPzQ0Up_/zulip.txt"
}
2020-04-08 00:27:24 +02:00
/user_uploads/{realm_id_str}/{filename}:
get :
description : |
Get a temporary URL for access to the file that doesn't require authentication.
parameters :
- name : realm_id_str
in : path
description : |
The realm id.
schema :
type : integer
example : 1
required : True
- name : filename
in : path
description : |
Path to the URL.
schema :
type : string
example : 4e/m2A3MSqFnWRLUf9SaPzQ0Up_/zulip.txt
required : True
2020-04-17 21:25:39 +02:00
responses :
'200' :
2020-04-08 00:27:24 +02:00
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
url :
type : string
description : |
A temporary URL that can be used to access the uploaded file
without Zulip's normal API authentication.
- example :
{
"msg": "" ,
"result": "success" ,
"url": "/user_uploads/temporary/322F32632F39765378464E4C63306D3961396F4970705A4D74424565432F7A756C69702E7478743A316A5053616A3A3938625F44393446466D37357254315F4F414C425A4553464F6A55"
}
2018-06-18 19:43:40 +02:00
/users :
get :
2020-04-16 13:20:32 +02:00
description : |
Retrieve all users in a realm.
2018-06-18 19:43:40 +02:00
parameters :
- name : client_gravatar
in : query
2020-04-16 13:20:32 +02:00
description : |
The `client_gravatar` field is set to `true` if clients can compute
their own gravatars.
2018-06-18 19:43:40 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-18 19:43:40 +02:00
example : true
2019-10-20 19:15:44 +02:00
- name : include_custom_profile_fields
in : query
2020-03-27 02:02:20 +01:00
description : |
2020-04-16 13:20:32 +02:00
Set to `true` if the client wants custom profile field data to be
included in the response.
2020-03-27 02:02:20 +01:00
**Changes**: New in Zulip 2.1.0. Previous versions do no offer these
data via the API.
2019-10-20 19:15:44 +02:00
schema :
type : boolean
default : false
example : true
2018-06-18 19:43:40 +02:00
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-18 19:43:40 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
members :
type : array
2020-04-16 13:20:32 +02:00
description : |
A list of `user` objects, each containing details about a user in the
organization.
2020-04-18 12:46:15 +02:00
items :
type : object
2018-06-18 19:43:40 +02:00
- example :
{
2019-10-25 20:36:17 +02:00
"msg": "" ,
"result": "success" ,
"members": [
{
"is_active": true ,
"email": "AARON@zulip.com" ,
"is_admin": false ,
"avatar_url": "https://secure.gravatar.com/avatar/818c212b9f8830dfef491b3f7da99a14?d=identicon&version=1" ,
"bot_type": null ,
"timezone": "" ,
"is_bot": false ,
"user_id": 7 ,
"profile_data": {},
"is_guest": false ,
"date_joined": "2019-10-20T07:50:53.728864+00:00" ,
"full_name": "aaron"
},
{
"date_joined": "2019-10-20T07:50:53.729659+00:00" ,
"full_name": "King Hamlet" ,
"is_guest": false ,
"profile_data": {
"4": {
"value": "vim"
},
"2": {
"value": "I am:\n* The prince of Denmark\n* Nephew to the usurping Claudius" ,
"rendered_value": "<p>I am:</p>\n<ul>\n<li>The prince of Denmark</li>\n<li>Nephew to the usurping Claudius</li>\n</ul>"
},
"5": {
"value": "1900-1-1"
},
"7": {
"value": "[11]"
},
"6": {
"value": "https://blog.zulig.org"
},
"1": {
"value": "+0-11-23-456-7890" ,
"rendered_value": "<p>+0-11-23-456-7890</p>"
},
"8": {
"value": "zulipbot"
},
"3": {
"rendered_value": "<p>Dark chocolate</p>" ,
"value": "Dark chocolate"
}
},
"user_id": 10 ,
"is_bot": false ,
"bot_type": null ,
"timezone": "" ,
"is_admin": false ,
"avatar_url": "https://secure.gravatar.com/avatar/6d8cad0fd00256e7b40691d27ddfd466?d=identicon&version=1" ,
"is_active": true ,
"email": "hamlet@zulip.com"
},
{
"bot_owner_id": 11 ,
"is_guest": false ,
"date_joined": "2019-10-20T12:52:17.862053+00:00" ,
"full_name": "Iago's Bot" ,
"email": "iago-bot@zulipdev.com" ,
"is_active": true ,
"avatar_url": "https://secure.gravatar.com/avatar/7328586831cdbb1627649bd857b1ee8c?d=identicon&version=1" ,
"is_admin": false ,
"user_id": 23 ,
"bot_type": 1 ,
"timezone": "" ,
"is_bot": true
}
]
2018-06-18 19:43:40 +02:00
}
2018-06-21 01:47:22 +02:00
post :
2020-04-16 13:20:32 +02:00
description : |
Create a new user in a realm.
2018-06-21 01:47:22 +02:00
parameters :
- name : email
in : query
2020-04-16 13:20:32 +02:00
description : |
The email address of the new user.
2018-06-21 01:47:22 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2019-10-11 14:58:24 +02:00
example : username@example.com
2018-06-21 01:47:22 +02:00
required : true
- name : password
in : query
2020-04-16 13:20:32 +02:00
description : |
The password of the new user.
2018-06-21 01:47:22 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2019-10-11 14:58:24 +02:00
example : abcd1234
2018-06-21 01:47:22 +02:00
required : true
- name : full_name
in : query
2020-04-16 13:20:32 +02:00
description : |
The full name of the new user.
2018-06-21 01:47:22 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2019-10-11 14:58:24 +02:00
example : New User
2018-06-21 01:47:22 +02:00
required : true
- name : short_name
in : query
2020-04-16 13:20:32 +02:00
description : |
The short name of the new user. Not user-visible.
2018-06-21 01:47:22 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : string
2019-10-11 14:58:24 +02:00
example : newuser
2018-06-21 01:47:22 +02:00
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"msg": "Email 'newbie@zulip.com' already in use" ,
"result": "error"
}
2020-02-14 21:22:52 +01:00
/users/{user_id}:
get :
2020-04-16 13:20:32 +02:00
description : |
Retrieve a user in a realm.
2020-02-14 21:22:52 +01:00
parameters :
- name : user_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The user id of the user.
2020-02-14 21:22:52 +01:00
schema :
type : integer
example : 11
required : true
- name : client_gravatar
in : query
2020-04-16 13:20:32 +02:00
description : |
The client should pass true if it can compute its own gravatar hashes.
2020-02-14 21:22:52 +01:00
schema :
type : boolean
default : false
example : true
- name : include_custom_profile_fields
in : query
2020-04-16 13:20:32 +02:00
description : |
The client should pass true if it wants to include custom profile field data.
2020-02-14 21:22:52 +01:00
schema :
type : boolean
default : false
example : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
2020-03-08 21:13:11 +01:00
user :
type : object
description : |
A dictionary containing the requested user's details.
2020-02-14 21:22:52 +01:00
- example :
{
"msg": "" ,
"result": "success" ,
2020-03-08 21:13:11 +01:00
"user": {
2020-02-14 21:22:52 +01:00
"date_joined": "2019-10-20T07:50:53.729659+00:00" ,
"full_name": "King Hamlet" ,
"is_guest": false ,
"profile_data": {
"4": {
"value": "vim"
},
"2": {
"value": "I am:\n* The prince of Denmark\n* Nephew to the usurping Claudius" ,
"rendered_value": "<p>I am:</p>\n<ul>\n<li>The prince of Denmark</li>\n<li>Nephew to the usurping Claudius</li>\n</ul>"
},
"5": {
"value": "1900-1-1"
},
"7": {
"value": "[11]"
},
"6": {
"value": "https://blog.zulig.org"
},
"1": {
"value": "+0-11-23-456-7890" ,
"rendered_value": "<p>+0-11-23-456-7890</p>"
},
"8": {
"value": "zulipbot"
},
"3": {
"rendered_value": "<p>Dark chocolate</p>" ,
"value": "Dark chocolate"
}
},
"user_id": 10 ,
"is_bot": false ,
"bot_type": null ,
"timezone": "" ,
"is_admin": false ,
"avatar_url": "https://secure.gravatar.com/avatar/6d8cad0fd00256e7b40691d27ddfd466?d=identicon&version=1" ,
"is_active": true ,
"email": "hamlet@zulip.com"
}
2020-03-08 21:13:11 +01:00
2020-02-14 21:22:52 +01:00
}
patch :
2020-04-16 13:20:32 +02:00
description : |
Update the user.
2020-02-14 21:22:52 +01:00
parameters :
- name : user_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The user id of the user.
2020-02-14 21:22:52 +01:00
schema :
type : integer
example : 12
required : true
- name : full_name
in : query
2020-04-16 13:20:32 +02:00
description : |
The user's full name.
2020-02-14 21:22:52 +01:00
schema :
type : string
format : json
example : NewName
required : false
- name : is_admin
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether the target user is an administrator.
2020-02-14 21:22:52 +01:00
schema :
type : boolean
example : false
required : false
- name : is_guest
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether the target user is a guest.
2020-02-14 21:22:52 +01:00
schema :
type : boolean
example : true
required : false
- name : profile_data
in : query
2020-04-16 13:20:32 +02:00
description : |
A dictionary containing the to be updated custom profile field data for the user.
2020-02-14 21:22:52 +01:00
schema :
type : array
items :
type : object
example : [
{
2020-03-27 05:03:26 +01:00
"id": 4 ,
"value": "vim"
2020-02-14 21:22:52 +01:00
},
{
2020-03-27 05:03:26 +01:00
"id": 5 ,
"value": "1909-04-05"
2020-02-14 21:22:52 +01:00
},
]
required : false
responses :
'200' :
2020-03-29 15:55:14 +02:00
$ref : '#/components/responses/SimpleSuccess'
2020-02-14 21:22:52 +01:00
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"result": "error" ,
"msg": "Guests cannot be organization administrators" ,
"code": "BAD_REQUEST"
}
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete the user with the passed 'user_id' from the realm.
2020-02-14 21:22:52 +01:00
parameters :
- name : user_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The user id of the user.
2020-02-14 21:22:52 +01:00
schema :
type : integer
example : 11
required : true
responses :
'200' :
description : Success
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"msg": "" ,
"result": "success" ,
}
'400' :
description : Bad Request
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"msg": "Cannot deactivate the only organization administrator" ,
"result": "error"
}
2018-08-07 17:52:03 +02:00
/users/{email}/presence:
get :
2020-04-16 13:20:32 +02:00
description : |
Get the presence status for a specific user.
2018-08-07 17:52:03 +02:00
parameters :
- name : email
in : path
2020-04-16 13:20:32 +02:00
description : |
The email address of the user whose presence you want to fetch.
2018-08-07 17:52:03 +02:00
schema :
type : string
example : iago@zulip.com
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
presence :
type : object
2020-04-16 13:20:32 +02:00
description : |
An object containing the presence details for every client the user has
logged into.
2018-08-07 17:52:03 +02:00
- example :
{
"presence": {
"website": {
"timestamp": 1532697622 ,
"status": "active" ,
},
"ZulipMobile": {
"timestamp": 1522687421 ,
"status": "active" ,
},
"aggregated": {
"timestamp": 1532697622 ,
"status": "active" ,
}
},
"result": "success" ,
"msg": ""
}
2019-08-04 13:08:36 +02:00
/users/me :
get :
2020-04-16 13:20:32 +02:00
description : |
Get the requesting user's profile data from the backend.
2019-08-04 13:08:36 +02:00
responses :
'200' :
description : Success
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
2019-09-27 21:07:03 +02:00
avatar_url :
type : string
2020-03-27 02:02:20 +01:00
description : |
URL for the user's avatar.
**Changes**: New in Zulip 2.1.0.
2019-09-27 21:07:03 +02:00
example : "x"
2019-08-04 13:08:36 +02:00
client_id :
type : string
2020-04-16 13:20:32 +02:00
description : |
NA
2019-08-04 13:08:36 +02:00
example : "74c768b081076fdb3c4326256c17467e"
email :
type : string
2020-04-16 13:20:32 +02:00
description : |
Email of the requesting user.
2019-08-04 13:08:36 +02:00
example : "iago@zulip.com"
full_name :
type : string
2020-04-16 13:20:32 +02:00
description : |
Full name of the requesting user.
2019-08-04 13:08:36 +02:00
example : "Iago"
is_admin :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
A boolean indicating if the requesting user is an admin.
2019-08-04 13:08:36 +02:00
example : true
is_bot :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
A boolean indicating if the requesting user is a bot.
2019-08-04 13:08:36 +02:00
example : false
max_message_id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
NA.
2019-08-04 13:08:36 +02:00
example : 30
pointer :
type : integer
2020-04-16 13:20:32 +02:00
description : |
NA
2019-08-04 13:08:36 +02:00
example : -1
short_name :
type : string
2020-04-16 13:20:32 +02:00
description : |
Short name of the requesting user.
2019-08-04 13:08:36 +02:00
example : "iago"
user_id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The user's ID.
2019-08-04 13:08:36 +02:00
example : 1
2019-10-25 20:28:53 +02:00
profile_data :
type : object
2020-04-16 13:20:32 +02:00
description : |
A dictionary containing custom profile field data for the user. Each entry
maps the integer ID of a custom profile field in the organization to a
dictionary containing the user's data for that field. Generally the data
includes just a single `value` key; for those custom profile fields
2019-10-25 20:28:53 +02:00
supporting markdown, a `rendered_value` key will also be present.
2019-08-04 13:08:36 +02:00
- example :
{
2019-09-27 21:07:03 +02:00
"avatar_url": "https://secure.gravatar.com/avatar/af4f06322c177ef4e1e9b2c424986b54?d=identicon&version=1" ,
2019-08-04 13:08:36 +02:00
"client_id": "74c768b081076fdb3c4326256c17467e" ,
"email": "iago@zulip.com" ,
"full_name": "Iago" ,
"is_admin": true ,
"is_bot": false ,
"max_message_id": 30 ,
"msg": "" ,
"pointer": -1 ,
"result": "success" ,
"short_name": "iago" ,
2019-10-25 20:28:53 +02:00
"user_id": 5 ,
"profile_data": {
"5": {
"value": "2000-1-1"
},
"4": {
"value": "emacs"
},
"7": {
"value": "[10]"
},
"1": {
"value": "+1-234-567-8901" ,
"rendered_value": "<p>+1-234-567-8901</p>"
},
"2": {
"rendered_value": "<p>Betrayer of Othello.</p>" ,
"value": "Betrayer of Othello."
},
"8": {
"value": "zulip"
},
"3": {
"value": "Apples" ,
"rendered_value": "<p>Apples</p>"
},
"6": {
"value": "https://zulip.readthedocs.io/en/latest/"
}
}
2019-08-04 13:08:36 +02:00
}
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete the requesting user from the realm.
2019-08-04 13:08:36 +02:00
responses :
'200' :
description : Bad Request
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"msg": "" ,
"result": "success" ,
}
'400' :
description : Bad Request
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"msg": "Cannot deactivate the only organization administrator" ,
"result": "error"
}
2018-06-01 18:58:07 +02:00
/users/me/{stream_id}/topics:
get :
2020-04-16 13:20:32 +02:00
description : |
Get all the topics in a specific stream.
2018-06-01 18:58:07 +02:00
parameters :
- name : stream_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The unique ID of the stream.
2018-06-01 18:58:07 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-01 18:58:07 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
topics :
type : array
items :
type : object
properties :
max_id :
2020-04-16 13:20:32 +02:00
description : |
2018-06-01 18:58:07 +02:00
The ID of the last message sent to the topic.
type : number
name :
2020-04-16 13:20:32 +02:00
description : |
The name of the topic.
2018-06-01 18:58:07 +02:00
type : string
- example :
{
2018-06-06 18:17:58 +02:00
"msg": "" ,
"result": "success" ,
"topics": [
{
"max_id": 26 ,
"name": "Denmark3"
},
{
"max_id": 23 ,
"name": "Denmark1"
},
{
"max_id": 6 ,
"name": "Denmark2"
}
]
}
2018-06-01 18:58:07 +02:00
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
2018-06-07 19:47:49 +02:00
"code": "BAD_REQUEST" ,
"msg": "Invalid stream id" ,
"result": "error"
}
/users/me/subscriptions :
2019-07-19 07:02:10 +02:00
get :
2020-04-16 13:20:32 +02:00
description : |
Get information on every stream the user is subscribed to.
2020-03-08 18:06:11 +01:00
# operationId can be used to record which view function
# corresponds to an endpoint. TODO: Add these for more
# endpoints, and perhaps use this to provide links to implementations.
operationId : zerver.views.streams.list_subscriptions_backend
2019-08-08 21:58:38 +02:00
parameters :
- name : include_subscribers
in : query
2020-03-27 02:02:20 +01:00
description : |
2020-04-16 13:20:32 +02:00
Set to `true` if you would like each stream's info to include a list of
current subscribers to that stream. (This may be significantly slower in
organizations with thousands of users.)
2020-03-27 02:02:20 +01:00
**Changes**: New in Zulip 2.1.0.
2019-08-08 21:58:38 +02:00
schema :
type : boolean
default : false
example : true
2019-07-19 07:02:10 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
2020-03-08 18:06:11 +01:00
# TODO: Is this the best way to declare required elements in 200 responses?
- required :
- subscriptions
2019-07-19 07:02:10 +02:00
- properties :
subscriptions :
type : array
items :
type : object
- example :
{
"msg": "" ,
"result": "success" ,
"subscriptions": [
{
"audible_notifications": true ,
"color": "#e79ab5" ,
"description": "A Scandinavian country" ,
"desktop_notifications": true ,
"email_address": "Denmark+187b4125ed36d6af8b5d03ef4f65c0cf@zulipdev.com:9981" ,
2020-03-27 02:02:20 +01:00
"is_muted": false ,
2019-07-19 07:02:10 +02:00
"invite_only": false ,
"name": "Denmark" ,
"pin_to_top": false ,
"push_notifications": false ,
"stream_id": 1 ,
"subscribers": [
"ZOE@zulip.com" ,
"hamlet@zulip.com" ,
"iago@zulip.com" ,
"othello@zulip.com" ,
"prospero@zulip.com"
]
},
{
"audible_notifications": true ,
"color": "#e79ab5" ,
"description": "Located in the United Kingdom" ,
"desktop_notifications": true ,
"email_address": "Scotland+f5786390183e60a1ccb18374f9d05649@zulipdev.com:9981" ,
2020-03-27 02:02:20 +01:00
"is_muted": false ,
2019-07-19 07:02:10 +02:00
"invite_only": false ,
"name": "Scotland" ,
"pin_to_top": false ,
"push_notifications": false ,
"stream_id": 3 ,
"subscribers": [
"ZOE@zulip.com" ,
"iago@zulip.com" ,
"othello@zulip.com" ,
"prospero@zulip.com"
]
}
]
}
2018-06-07 19:47:49 +02:00
post :
2020-04-16 13:20:32 +02:00
description : |
Subscribe one or more users to one or more streams.
2018-06-07 19:47:49 +02:00
parameters :
- name : subscriptions
in : query
2020-04-16 13:20:32 +02:00
description : |
"A list of dictionaries containing the the key `name` and value
specifying the name of the stream to subscribe. If the stream does not
exist a new stream is created. The description of the stream created can
be specified by setting the dictionary key `description` with an
appropriate value.
2019-10-10 10:55:48 +02:00
2018-06-07 19:47:49 +02:00
**Note**: This argument is called `streams` and not `subscriptions`
2018-06-21 02:03:15 +02:00
in our Python API."
2018-06-07 19:47:49 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : array
2018-06-21 02:18:05 +02:00
items :
type : object
2019-01-29 20:20:58 +01:00
example : [ {"name": "Verona", "description": "Italian City" }]
2018-06-07 19:47:49 +02:00
required : true
- name : invite_only
in : query
2020-04-16 13:20:32 +02:00
description : |
A boolean specifying whether the streams specified in `subscriptions`
are invite-only or not.
2018-06-07 19:47:49 +02:00
schema :
type : boolean
default : false
example : true
- name : principals
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of email addresses of the users that will be subscribed to the
streams specified in the `subscriptions` argument. If not provided, then
the requesting user/bot is subscribed.
2018-06-07 19:47:49 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : array
2018-06-21 02:18:05 +02:00
items :
type : string
2018-06-07 19:47:49 +02:00
default : [ ]
example : [ 'ZOE@zulip.com' ]
- name : authorization_errors_fatal
in : query
2020-04-16 13:20:32 +02:00
description : |
A boolean specifying whether authorization errors (such as when the
requesting user is not authorized to access a private stream) should be
considered fatal or not. When `True`, an authorization error is reported
as such. When set to `False`, the returned JSON payload indicates that
there was an authorization error, but the response is still considered a
successful one.
2018-06-07 19:47:49 +02:00
schema :
type : boolean
default : true
example : false
2019-07-19 07:02:10 +02:00
- name : history_public_to_subscribers
in : query
2020-04-16 13:20:32 +02:00
description : |
A boolean indicating if the history should be available to newly
subscribed members.
2019-07-19 07:02:10 +02:00
schema :
type : boolean
default : None
example : false
2020-02-04 21:50:55 +01:00
- name : stream_post_policy
2019-07-19 07:02:10 +02:00
in : query
2020-03-27 01:45:03 +01:00
description : |
Policy for which users can post messages to the stream.
* 1 => Any user can post.
* 2 => Only administrators can post.
* 3 => Only new members can post.
**Changes**: New in Zulip 2.2, replacing the previous is_announcement_only
boolean.
2019-07-19 07:02:10 +02:00
schema :
2020-02-04 21:50:55 +01:00
type : integer
default : 1
example : 1
2019-07-19 07:02:10 +02:00
- name : announce
in : query
2020-04-16 13:20:32 +02:00
description : |
If `announce` is `True` and one of the streams specified in
`subscriptions` has to be created (i.e. doesn't exist to begin with), an
announcement will be made notifying that a new stream was created.
2019-07-19 07:02:10 +02:00
schema :
type : boolean
example : true
2018-06-07 19:47:49 +02:00
responses :
2020-04-17 16:16:43 +02:00
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-07 19:47:49 +02:00
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- allOf :
- $ref : '#/components/schemas/AddSubscriptionsResponse'
- example :
{
"already_subscribed": {},
"msg": "" ,
"result": "success" ,
"subscribed": {
"iago@zulip.com": [
"new stream"
]
}
}
- allOf :
- $ref : '#/components/schemas/AddSubscriptionsResponse'
- example :
{
"already_subscribed": {
"newbie@zulip.com": [
"new stream"
]
},
"msg": "" ,
"result": "success" ,
"subscribed": {}
}
'400' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-07 19:47:49 +02:00
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- allOf :
- $ref : '#/components/schemas/AddSubscriptionsResponse'
- example :
{
"msg": "Unable to access stream (private_stream)." ,
"result": "error"
}
- allOf :
- $ref : '#/components/schemas/AddSubscriptionsResponse'
- example :
{
"already_subscribed": {},
"msg": "" ,
"result": "success" ,
"subscribed": {},
"unauthorized": [
"private_stream"
]
}
2019-07-19 07:02:10 +02:00
patch :
2020-04-16 13:20:32 +02:00
description : |
Update which streams you are are subscribed to.
2020-03-08 18:06:11 +01:00
operationId : zerver.views.streams.update_subscriptions_backend
2019-07-19 07:02:10 +02:00
parameters :
- name : delete
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of stream names to unsubscribe from.
2019-07-19 07:02:10 +02:00
schema :
type : array
items :
type : string
example : [ 'Verona' , 'Denmark' ]
required : false
- name : add
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of objects describing which streams to subscribe to, optionally
including per-user subscription parameters (e.g. color) and if the
stream is to be created, its description.
2019-07-19 07:02:10 +02:00
schema :
type : array
items :
type : object
2019-07-31 01:36:50 +02:00
properties :
name :
type : string
color :
type : string
description :
type : string
2019-07-19 07:02:10 +02:00
example :
[
{
"name": "Verona"
},
{
"name": "Denmark" ,
"color": "#e79ab5" ,
"description": "A Scandinavian country" ,
}
]
required : false
2019-12-05 11:02:20 +01:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
2020-03-08 18:06:11 +01:00
- required :
- subscribed
- not_subscribed
- already_subscribed
- removed
2019-12-05 11:02:20 +01:00
- properties :
subscribed :
type : object
2020-04-16 13:20:32 +02:00
description : |
A dictionary where the key is the email
address of the user/bot and the value is a
list of the names of the streams that were
subscribed to as a result of the query.
2019-12-05 11:02:20 +01:00
already_subscribed :
type : object
2020-04-16 13:20:32 +02:00
description : |
A dictionary where the key is the email
address of the user/bot and the value is a
list of the names of the streams that the
user/bot is already subscribed to.
2019-12-05 11:02:20 +01:00
not_removed :
type : array
items :
type : string
2020-04-16 13:20:32 +02:00
description : |
A list of the names of streams that the user
is already unsubscribed from, and hence
doesn't need to be unsubscribed.
2019-12-05 11:02:20 +01:00
removed :
type : array
items :
type : string
2020-04-16 13:20:32 +02:00
description : |
A list of the names of streams which were unsubscribed
from as a result of the query.
2019-12-05 11:02:20 +01:00
- example :
{
"msg": "" ,
"subscribed": {},
"already_subscribed": {"iago@zulip.com" : [ "Verona" ] },
"not_removed": [ ] ,
"removed": [
"new stream"
] ,
"result": "success"
}
2018-06-21 02:23:47 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Unsubscribe yourself or other users from one or more streams.
2018-06-21 02:23:47 +02:00
parameters :
- name : subscriptions
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of stream names to unsubscribe from. This argument is called
`streams` in our Python API.
2018-06-21 02:23:47 +02:00
schema :
type : array
items :
type : string
example : [ 'Verona' , 'Denmark' ]
required : true
- name : principals
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of email addresses of the users that will be unsubscribed from
the streams specified in the `subscriptions` argument. If not provided,
then the requesting user/bot is unsubscribed.
2018-06-21 02:23:47 +02:00
schema :
type : array
items :
type : string
example : [ 'ZOE@zulip.com' ]
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
2019-10-13 05:30:34 +02:00
not_removed :
2018-06-21 02:23:47 +02:00
type : array
items :
type : string
2020-04-16 13:20:32 +02:00
description : |
A list of the names of streams that the user is already unsubscribed
from, and hence doesn't need to be unsubscribed.
2018-06-21 02:23:47 +02:00
removed :
type : array
items :
type : string
2020-04-16 13:20:32 +02:00
description : |
A list of the names of streams which were unsubscribed from as a result
of the query.
2018-06-21 02:23:47 +02:00
- example :
{
"msg": "" ,
2019-10-13 05:30:34 +02:00
"not_removed": [ ] ,
2018-06-21 02:23:47 +02:00
"removed": [
"new stream"
] ,
"result": "success"
}
'400' :
description : Bad request.
content :
application/json :
schema :
2018-06-21 02:25:29 +02:00
$ref : '#/components/schemas/NonExistingStreamError'
2018-07-10 08:17:35 +02:00
/users/me/subscriptions/muted_topics :
patch :
2020-04-16 13:20:32 +02:00
description : |
Toggle muting for a specific topic the user is subscribed to.
2018-07-10 08:17:35 +02:00
parameters :
- name : stream
2019-07-31 01:36:50 +02:00
in : query
2020-04-16 13:20:32 +02:00
description : |
The name of the stream in which to mute the topic.
2018-07-10 08:17:35 +02:00
schema :
type : string
example : Verona
2019-10-07 10:46:04 +02:00
required : false
- name : stream_id
in : query
2020-04-16 13:20:32 +02:00
description : |
The id of the stream in which to mute the topic.
2019-10-07 10:46:04 +02:00
schema :
type : integer
example : 3
required : false
2018-07-10 08:17:35 +02:00
- name : topic
in : query
2020-04-16 13:20:32 +02:00
description : |
The topic to (un)mute. Note that the request will succeed regardless of
whether any messages have been sent to the specified topic.
2018-07-10 08:17:35 +02:00
schema :
type : string
example : dinner
required : true
- name : op
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether to mute (`add`) or unmute (`remove`) the provided topic.
2018-07-10 08:17:35 +02:00
schema :
type : string
enum :
- add
- remove
example : add
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2020-04-17 16:16:43 +02:00
'400' :
2018-07-10 08:17:35 +02:00
description : Bad request.
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- allOf :
2018-07-10 08:17:35 +02:00
- $ref : '#/components/schemas/JsonError'
- example :
{
"msg": "Topic already muted" ,
"result": "error"
}
2020-04-17 16:16:43 +02:00
- allOf :
2018-07-10 08:17:35 +02:00
- $ref : '#/components/schemas/JsonError'
- example :
{
2018-08-27 22:13:56 +02:00
"msg": "Topic is not muted" ,
2018-07-10 08:17:35 +02:00
"result": "error"
}
2019-07-11 12:45:26 +02:00
/realm/emoji/{emoji_name}:
2018-12-12 19:49:14 +01:00
post :
2020-04-16 13:20:32 +02:00
description : |
Upload a single emoji file.
2019-07-04 18:12:53 +02:00
parameters :
- name : emoji_name
2019-07-31 01:36:50 +02:00
required : true
2019-07-04 18:12:53 +02:00
in : path
2020-04-16 13:20:32 +02:00
description : |
The name that should be associated with the uploaded emoji image/gif.
2019-07-04 18:12:53 +02:00
schema :
type : string
2018-12-12 19:49:14 +01:00
requestBody :
content :
multipart/form-data :
schema :
properties :
filename :
type : string
format : binary
2019-10-16 13:06:31 +02:00
example : /path/to/img.png
2018-12-12 19:49:14 +01:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
2019-07-04 18:12:53 +02:00
2018-07-03 20:22:53 +02:00
/realm/emoji :
get :
2020-04-16 13:20:32 +02:00
description : |
Get all the custom emoji in the user's realm.
2018-07-03 20:22:53 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
emoji :
type : object
2020-04-16 13:20:32 +02:00
description : |
An object that contains `emoji` objects, each identified with their
emoji ID as the key.
2018-07-03 20:22:53 +02:00
- example :
{
"result": "success" ,
"msg": "" ,
"emoji": {
"1": {
"id": "1" ,
"name": "green_tick" ,
"source_url": "/user_avatars/1/emoji/images/1.png" ,
"deactivated": false ,
"author": {
"id": 5 ,
"email": "iago@zulip.com" ,
"full_name": "Iago"
}
}
}
}
2018-07-12 10:09:50 +02:00
/users/me/subscriptions/properties :
post :
2020-04-16 13:20:32 +02:00
description : |
Make bulk modifications of the subscription properties on one or more
streams the user is subscribed to.
2018-07-12 10:09:50 +02:00
parameters :
- name : subscription_data
in : query
2020-04-16 13:20:32 +02:00
description : |
A list of objects that describe the changes that should be applied in
each subscription. Each object represents a subscription, and must have
a `stream_id` key that identifies the stream, as well as the `property`
being modified and its new `value`.
2018-07-12 10:09:50 +02:00
schema :
type : array
items :
type : object
2019-10-10 11:06:47 +02:00
example : [ {"stream_id": 1, "property": "pin_to_top", "value": true}, {"stream_id": 3, "property": "color", "value": '#f00f00' }]
2018-07-12 10:09:50 +02:00
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
subscription_data :
type : array
items :
type : object
2020-04-16 13:20:32 +02:00
description : |
The same `subscription_data` object sent by the client for the request.
2018-07-12 10:09:50 +02:00
- example :
{
"subscription_data": [
{
"property": "pin_to_top" ,
"value": true ,
"stream_id": 1
},
{
"property": "color" ,
"value": 'f00' ,
"stream_id": 3
}
] ,
"result": "success" ,
"msg": ""
}
2018-08-14 02:54:36 +02:00
/realm/filters :
2018-08-14 03:10:37 +02:00
get :
2020-04-16 13:20:32 +02:00
description : |
Fetch all the filters set up for the user's organization.
2018-08-14 03:10:37 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
filters :
type : array
items :
type : array
items :
2019-07-31 01:36:50 +02:00
oneOf :
- type : string
- type : integer
2020-04-16 13:20:32 +02:00
description : |
An array of tuples, each representing one of
the linkifiers set up in the
organization. Each of these tuples contain the
pattern, the formatted URL and the filter's
ID, in that order. See the [Create
linkifiers](/api/add-linkifiers) article for
details on what each field means.
2018-08-14 03:10:37 +02:00
- example :
{
"msg": "" ,
"filters": [
[
"#(?P<id>[0-9]+)" ,
"https://github.com/zulip/zulip/issues/%(id)s" ,
1
]
] ,
"result": "success"
}
2018-08-14 02:54:36 +02:00
post :
2020-04-16 13:20:32 +02:00
description : |
Establish patterns in the messages that should be automatically
linkified.
2018-08-14 02:54:36 +02:00
parameters :
- name : pattern
in : query
2020-04-16 13:20:32 +02:00
description : |
The [Python regular
expression](https://docs.python.org/3/howto/regex.html) that should
trigger the linkifier.
2018-08-14 02:54:36 +02:00
schema :
type : string
example : '#(?P<id>[0-9]+)'
required : true
- name : url_format_string
in : query
2020-04-16 13:20:32 +02:00
description : |
The URL used for the link. If you used named groups for the `pattern`,
you can insert their content here with
2018-08-14 02:54:36 +02:00
`%(name_of_the_capturing_group)s`.
schema :
type : string
example : https://github.com/zulip/zulip/issues/%(id)s
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The numeric ID assigned to this filter.
2018-08-14 02:54:36 +02:00
- example :
{
"id": 42 ,
"result": "success" ,
"msg": ""
}
2019-07-11 12:45:26 +02:00
/realm/filters/{filter_id}:
2018-08-14 03:20:39 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Remove an organization filter.
2018-08-14 03:20:39 +02:00
parameters :
- name : filter_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the filter that you want to remove.
2018-08-14 03:20:39 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2018-06-20 23:03:01 +02:00
/register :
post :
2020-04-16 13:20:32 +02:00
description : |
This powerful endpoint can be used to register a Zulip "event queue"
(subscribed to certain types of "events", or updates to the messages and
other Zulip data the current user has access to), as well as to fetch
the current state of that data.
2018-06-20 23:03:01 +02:00
parameters :
- name : apply_markdown
in : query
2020-04-16 13:20:32 +02:00
description : |
Set to `true` if you would like the content to be rendered in HTML
format (otherwise the API will return the raw text that the user
entered)
2018-06-20 23:03:01 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-20 23:03:01 +02:00
example : true
- name : client_gravatar
in : query
2020-04-16 13:20:32 +02:00
description : |
The `client_gravatar` field is set to `true` if clients can compute
their own gravatars.
2018-06-20 23:03:01 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-20 23:03:01 +02:00
example : true
2020-02-02 17:29:05 +01:00
- name : slim_presence
in : query
2020-03-27 01:45:03 +01:00
description : |
2020-04-16 13:20:32 +02:00
Setting this to `true` will make presence dictionaries be keyed by
user_id instead of email.
2020-03-27 01:45:03 +01:00
**Changes**: New in Zulip 2.2.
2020-02-02 17:29:05 +01:00
schema :
type : boolean
default : false
example : true
2020-04-15 08:24:00 +02:00
- $ref : '#/components/parameters/Event_types'
2019-10-14 12:09:35 +02:00
example : [ 'message' ]
2018-06-20 23:03:01 +02:00
- name : all_public_streams
in : query
2020-04-16 13:20:32 +02:00
description : |
Set to `True` if you would like to receive events that occur within all
public streams.
2018-06-20 23:03:01 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-20 23:03:01 +02:00
example : true
- name : include_subscribers
in : query
2020-04-16 13:20:32 +02:00
description : |
Set to `True` if you would like to receive events that include the
subscribers for each stream.
2018-06-20 23:03:01 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-20 23:03:01 +02:00
example : true
2020-03-27 02:02:20 +01:00
- name : client_capabilities
in : query
description : |
2020-04-16 13:20:32 +02:00
Dictionary containing details on features the client supports that are
relevant to the format of responses sent by the server.
2020-03-27 02:02:20 +01:00
* `notification_settings_null` : Boolean for whether the
client can handle the current API with null values for
stream-level notification settings (which means the stream
is not customized and should inherit the user's global
notification settings for stream messages). New in Zulip
2.1 .0 ; in earlier Zulip releases, stream-level
notification settings were simple booleans.
schema :
type : object
2020-03-27 04:53:11 +01:00
example :
{
"notification_settings_null": true
}
2018-06-20 23:03:01 +02:00
- name : fetch_event_types
in : query
2020-04-16 13:20:32 +02:00
description : |
Same as the `event_types` argument except that the values in
`fetch_event_types` are used to fetch initial data. If
2018-06-20 23:03:01 +02:00
`fetch_event_types` is not provided, `event_types` is used and if
`event_types` is not provided, this argument defaults to `None`.
schema :
2019-07-24 01:33:57 +02:00
type : array
2019-07-31 01:36:50 +02:00
items :
type : string
2019-10-14 12:09:56 +02:00
example : [ 'message' ]
2018-06-20 23:03:01 +02:00
- name : narrow
in : query
2020-03-27 05:03:26 +01:00
description : |
2020-04-16 13:20:32 +02:00
A JSON-encoded array of length 2 indicating the narrow for which you'd
like to receive events. For instance, to receive events for the stream
`Denmark`, you would specify `narrow=['stream', 'Denmark']`. Another
example is `narrow=['is', 'private']` for private messages.
2018-06-20 23:03:01 +02:00
schema :
2019-07-24 01:33:57 +02:00
type : array
2019-07-31 01:36:50 +02:00
items :
anyOf :
- type : string
- type : integer
2020-04-18 12:46:15 +02:00
default : [ ]
2019-10-14 12:17:29 +02:00
example : [ 'stream' , 'Denmark' ]
2018-06-20 23:03:01 +02:00
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-20 23:03:01 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
queue_id :
type : string
2020-04-16 13:20:32 +02:00
description : |
The ID of the queue that has been allocated for your client.
2018-06-20 23:03:01 +02:00
last_event_id :
type : integer
2020-04-16 13:20:32 +02:00
description : |
The initial value of `last_event_id` to pass to `GET /api/v1/events`.
2018-06-20 23:03:01 +02:00
- example :
{
"last_event_id": -1 ,
"msg": "" ,
"queue_id": "1517975029:0" ,
"realm_emoji": {
"1": {
"author": {
"email": "iago@zulip.com" ,
"full_name": "Iago" ,
"id": 5
},
"deactivated": false ,
"id": "1" ,
"name": "green_tick" ,
"source_url": "/user_avatars/1/emoji/images/1.png"
}
},
"result": "success"
}
2018-08-11 15:50:56 +02:00
/server_settings :
get :
2020-04-16 13:20:32 +02:00
description : |
Fetch global settings for the Zulip server.
2018-08-11 15:50:56 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
authentication_methods :
type : object
2020-04-16 13:20:32 +02:00
description : |
Each key-value pair in the object indicates whether the authentication
method is enabled on this server.
2019-11-03 23:51:49 +01:00
external_authentication_methods :
2019-10-22 01:33:44 +02:00
type : array
2020-04-16 13:20:32 +02:00
description : |
List of dictionaries describing which external authentication methods
are enabled and their parameters - most importantly the login url,
display_name and display_icon.
2020-04-18 12:46:15 +02:00
items :
type : object
2018-08-11 15:50:56 +02:00
zulip_version :
type : string
2020-04-16 13:20:32 +02:00
description : |
The version of Zulip running in the server.
2018-08-11 15:50:56 +02:00
push_notifications_enabled :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether mobile/push notifications are enabled.
2018-12-06 02:49:34 +01:00
is_incompatible :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether the Zulip client that has sent a request to this endpoint is
deemed incompatible with the server.
2018-08-11 15:50:56 +02:00
email_auth_enabled :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Setting for allowing users authenticate with an email-password
combination.
2018-08-11 15:50:56 +02:00
require_email_format_usernames :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
Whether usernames should have an email address format. This is important if your server has [LDAP
authentication](https://zulip.readthedocs.io/en/latest/production/authentication-methods.html#ldap-including-active-directory)
2018-08-11 15:50:56 +02:00
enabled with a username and password combination.
realm_uri :
type : string
2020-04-16 13:20:32 +02:00
description : |
The organization's URI.
2018-08-11 15:50:56 +02:00
realm_name :
type : string
2020-04-16 13:20:32 +02:00
description : |
The realm's name.
2018-08-11 15:50:56 +02:00
realm_icon :
type : string
2020-04-16 13:20:32 +02:00
description : |
The URI of the organization's mobile icon (usually a square version of
the logo).
2018-08-11 15:50:56 +02:00
realm_description :
type : string
2020-04-16 13:20:32 +02:00
description : |
HTML description of the organization, as configured by the [organization
profile](/help/create-your-organization-profile).
2018-08-11 15:50:56 +02:00
- example :
{
2019-10-29 21:29:12 +01:00
"authentication_methods": {
"password": true ,
"dev": true ,
"email": true ,
"ldap": false ,
"remoteuser": false ,
"github": true ,
"azuread": false ,
"google": true ,
"saml": true
},
"zulip_version": "2.0.6+git" ,
2018-08-11 15:50:56 +02:00
"push_notifications_enabled": false ,
"msg": "" ,
2019-10-29 21:29:12 +01:00
"is_incompatible": false ,
2018-08-11 15:50:56 +02:00
"email_auth_enabled": true ,
2019-10-29 21:29:12 +01:00
"require_email_format_usernames": true ,
"realm_uri": "http://localhost:9991" ,
2018-08-11 15:50:56 +02:00
"realm_name": "Zulip Dev" ,
2019-10-29 21:29:12 +01:00
"realm_icon": "https://secure.gravatar.com/avatar/62429d594b6ffc712f54aee976a18b44?d=identicon" ,
"realm_description": "<p>The Zulip development environment default organization. It's great for testing!</p>" ,
2018-08-11 15:50:56 +02:00
"result": "success" ,
2019-11-03 23:51:49 +01:00
"external_authentication_methods": [
2019-10-29 21:29:12 +01:00
{
"name": "saml:idp_name" ,
"display_name": "SAML" ,
2019-11-05 00:08:27 +01:00
"display_icon": null ,
2019-10-29 21:29:12 +01:00
"login_url": "/accounts/login/social/saml/idp_name" ,
2019-11-02 04:35:39 +01:00
"signup_url": "/accounts/register/social/saml/idp_name"
2019-10-29 21:29:12 +01:00
},
{
"name": "google" ,
"display_name": "Google" ,
2019-11-04 00:08:29 +01:00
"display_icon": "/static/images/landing-page/logos/googl_e-icon.png" ,
2019-11-02 00:05:57 +01:00
"login_url": "/accounts/login/social/google" ,
2019-11-02 04:35:39 +01:00
"signup_url": "/accounts/register/social/google"
2019-10-29 21:29:12 +01:00
},
{
"name": "github" ,
"display_name": "GitHub" ,
2019-11-04 00:08:29 +01:00
"display_icon": "/static/images/landing-page/logos/github-icon.png" ,
2019-10-29 21:29:12 +01:00
"login_url": "/accounts/login/social/github" ,
2019-11-02 04:35:39 +01:00
"signup_url": "/accounts/register/social/github"
2019-10-29 21:29:12 +01:00
}
]
2018-08-11 15:50:56 +02:00
}
2018-08-10 02:15:45 +02:00
/settings/notifications :
patch :
2020-04-16 13:20:32 +02:00
description : |
Modify the user's preferences for notifications.
2018-08-10 02:15:45 +02:00
parameters :
- name : enable_stream_desktop_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable visual desktop notifications for stream messages.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_stream_email_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable email notifications for stream messages.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_stream_push_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable mobile notifications for stream messages.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_stream_audible_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable audible desktop notifications for stream messages.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
2019-10-07 10:18:53 +02:00
- name : notification_sound
in : query
2020-04-16 13:20:32 +02:00
description : |
Notification sound name.
2019-10-07 10:18:53 +02:00
schema :
type : string
2019-10-18 09:00:43 +02:00
format : json
2019-10-07 10:18:53 +02:00
example : ding
2018-08-10 02:15:45 +02:00
- name : enable_desktop_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable visual desktop notifications for private messages and @-mentions.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_sounds
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable audible desktop notifications for private messages and
@-mentions.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_offline_email_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable email notifications for private messages and @-mentions received
when the user is offline.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_offline_push_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable mobile notification for private messages and @-mentions received
when the user is offline.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_online_push_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable mobile notification for private messages and @-mentions received
when the user is online.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
- name : enable_digest_emails
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable digest emails when the user is away.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
example : true
2019-10-07 10:18:53 +02:00
- name : enable_login_emails
in : query
2020-04-16 13:20:32 +02:00
description : |
Enable email notifications for new logins to account.
2019-10-07 10:18:53 +02:00
schema :
type : boolean
example : true
2018-08-10 02:15:45 +02:00
- name : message_content_in_email_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Include the message's content in missed messages email notifications.
2018-08-10 02:15:45 +02:00
schema :
type : boolean
2019-10-07 10:18:53 +02:00
example : true
- name : pm_content_in_desktop_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Include content of private messages in desktop notifications.
2019-10-07 10:18:53 +02:00
schema :
type : boolean
example : true
2019-09-03 23:27:45 +02:00
- name : wildcard_mentions_notify
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether wildcard mentions (E.g. @**all**) should send notifications
like a personal mention.
2019-09-03 23:27:45 +02:00
schema :
type : boolean
example : true
2019-10-07 10:18:53 +02:00
- name : desktop_icon_count_display
in : query
2020-04-16 13:20:32 +02:00
description : |
> Unread count summary (appears in desktop sidebar and browser tab)
2019-10-07 10:18:53 +02:00
* 1 - All unreads
* 2 - Private messages and mentions
* 3 - None
schema :
type : integer
enum :
- 1
- 2
- 3
example : 1
- name : realm_name_in_notifications
in : query
2020-04-16 13:20:32 +02:00
description : |
Include organization name in subject of missed message emails.
2019-10-07 10:18:53 +02:00
schema :
type : boolean
2018-08-10 02:15:45 +02:00
example : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
enable_desktop_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_desktop_notifications`, if it was changed in
2018-08-10 02:15:45 +02:00
this request.
enable_digest_emails :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_digest_emails`, if it was changed in this
request.
2018-08-10 02:15:45 +02:00
enable_offline_email_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_offline_email_notifications`, if it was changed
2018-08-10 02:15:45 +02:00
in this request.
enable_offline_push_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_offline_push_notifications`, if it was changed
2018-08-10 02:15:45 +02:00
in this request.
enable_online_push_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_online_push_notifications`, if it was changed in
this request.
2018-08-10 02:15:45 +02:00
enable_sounds :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_sounds`, if it was changed in this request.
2018-08-10 02:15:45 +02:00
enable_stream_email_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_stream_email_notifications`, if it was changed
2018-08-10 02:15:45 +02:00
in this request.
enable_stream_push_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_stream_push_notifications`, if it was changed in
this request.
2018-08-10 02:15:45 +02:00
enable_stream_audible_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `enable_stream_audible_notifications`, if it was changed
in this request.
2018-08-10 02:15:45 +02:00
message_content_in_email_notifications :
type : boolean
2020-04-16 13:20:32 +02:00
description : |
The setting for `message_content_in_email_notifications`, if it was
2018-08-10 02:15:45 +02:00
changed in this request.
- example :
{
"enable_offline_push_notifications": true ,
"enable_online_push_notifications": true ,
"msg": "" ,
"result": "success"
}
2018-06-18 18:53:13 +02:00
/streams :
get :
2020-04-16 13:20:32 +02:00
description : |
Get all streams that the user has access to.
2018-06-18 18:53:13 +02:00
parameters :
- name : include_public
in : query
2020-04-16 13:20:32 +02:00
description : |
Include all public streams.
2018-06-18 18:53:13 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : true
2018-06-18 18:53:13 +02:00
example : false
- name : include_subscribed
in : query
2020-04-16 13:20:32 +02:00
description : |
Include all streams that the user is subscribed to.
2018-06-18 18:53:13 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : true
2018-06-18 18:53:13 +02:00
example : false
- name : include_all_active
in : query
2020-04-16 13:20:32 +02:00
description : |
Include all active streams. The user must have administrative privileges
to use this parameter.
2018-06-18 18:53:13 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-18 18:53:13 +02:00
example : true
- name : include_default
in : query
2020-04-16 13:20:32 +02:00
description : |
Include all default streams for the user's realm.
2018-06-18 18:53:13 +02:00
schema :
2018-06-21 02:03:15 +02:00
type : boolean
default : false
2018-06-18 18:53:13 +02:00
example : true
2019-02-28 22:20:24 +01:00
- name : include_owner_subscribed
in : query
2020-04-16 13:20:32 +02:00
description : |
If the user is a bot, include all streams that the bot's owner is
subscribed to.
2019-02-28 22:20:24 +01:00
schema :
type : boolean
default : false
example : true
2018-06-18 18:53:13 +02:00
responses :
'200' :
2018-06-21 02:03:15 +02:00
description : Success.
2018-06-18 18:53:13 +02:00
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
streams :
type : array
items :
type : object
2020-04-16 13:20:32 +02:00
description : |
A list of `stream` objects, which contain a `description`, a `name`,
their `stream_id` and whether they are `invite_only` or not.
2018-06-18 18:53:13 +02:00
- example :
{
"msg": "" ,
"result": "success" ,
"streams": [
{
"description": "A Scandinavian country" ,
"invite_only": false ,
"name": "Denmark" ,
"stream_id": 1
},
{
"description": "Yet another Italian city" ,
"invite_only": false ,
"name": "Rome" ,
"stream_id": 2
},
{
"description": "Located in the United Kingdom" ,
"invite_only": false ,
"name": "Scotland" ,
"stream_id": 3
},
{
"description": "A northeastern Italian city" ,
"invite_only": false ,
"name": "Venice" ,
"stream_id": 4
},
{
"description": "A city in Italy" ,
"invite_only": false ,
"name": "Verona" ,
"stream_id": 5
},
{
"description": "New stream for testing" ,
"invite_only": false ,
"name": "new stream" ,
"stream_id": 6
}
]
}
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "User not authorized for this query" ,
"result": "error"
}
2019-04-08 10:11:18 +02:00
/streams/{stream_id}:
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete the stream with the given ID.
2020-03-08 18:06:11 +01:00
operationId : zerver.views.streams.deactivate_stream_backend
2019-04-08 10:11:18 +02:00
parameters :
- name : stream_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the stream to be deleted.
2019-04-08 10:11:18 +02:00
schema :
type : integer
2019-06-22 08:22:32 +02:00
example : 42
required : true
2019-06-23 14:38:28 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"msg": "" ,
"result": "success"
}
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
2020-03-08 18:06:11 +01:00
- properties :
msg :
type : string
2019-06-23 14:38:28 +02:00
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid stream id" ,
"result": "error"
}
patch :
2020-04-16 13:20:32 +02:00
description : |
Update the stream with the given ID.
2020-03-08 18:06:11 +01:00
operationId : zerver.views.streams.update_stream_backend
2019-06-23 14:38:28 +02:00
parameters :
- name : stream_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the stream to be updated.
2019-06-23 14:38:28 +02:00
schema :
type : integer
example : 42
required : true
- name : description
in : query
2020-04-16 13:20:32 +02:00
description : |
The new description for the stream.
2019-06-23 14:38:28 +02:00
schema :
type : string
2019-10-18 08:47:27 +02:00
format : json
2019-06-23 14:38:28 +02:00
example : "This stream is related to football dicsussions."
required : false
- name : new_name
in : query
2020-04-16 13:20:32 +02:00
description : |
The new name for the stream.
2019-06-23 14:38:28 +02:00
schema :
type : string
2019-10-18 08:47:27 +02:00
format : json
2019-06-23 14:38:28 +02:00
example : "Italy"
required : false
- name : is_private
in : query
2020-04-16 13:20:32 +02:00
description : |
Change whether the stream is a private stream.
2019-06-23 14:38:28 +02:00
schema :
type : boolean
example : true
required : false
- name : is_announcement_only
in : query
2020-03-27 01:45:03 +01:00
description : |
Whether the stream is limited to announcements.
2020-03-27 05:03:26 +01:00
**Changes**: Deprecated in Zulip 2.2, use `stream_post_policy` instead.
2019-06-23 14:38:28 +02:00
schema :
type : boolean
example : true
required : false
2020-02-04 21:50:55 +01:00
- name : stream_post_policy
in : query
2020-03-27 01:45:03 +01:00
description : |
Policy for which users can post messages to the stream.
* 1 => Any user can post.
* 2 => Only administrators can post.
* 3 => Only new members can post.
2020-03-27 05:03:26 +01:00
**Changes**: New in Zulip 2.2, replacing the previous `is_announcement_only`
2020-03-27 01:45:03 +01:00
boolean.
2020-02-04 21:50:55 +01:00
schema :
type : integer
example : 2
required : false
2019-06-23 14:38:28 +02:00
- name : history_public_to_subscribers
in : query
2020-03-27 05:03:26 +01:00
description : |
Whether subscribers have access to full stream history, even before they joined
the stream.
2019-06-23 14:38:28 +02:00
schema :
type : boolean
example : true
required : false
2020-03-08 18:06:11 +01:00
2019-04-08 10:11:18 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
2019-06-22 08:22:32 +02:00
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"msg": "" ,
"result": "success"
}
2019-04-08 10:11:18 +02:00
'400' :
description : Bad request.
content :
application/json :
schema :
2019-06-22 08:22:32 +02:00
allOf :
2019-04-08 10:11:18 +02:00
- $ref : '#/components/schemas/JsonError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid stream id" ,
"result": "error"
}
2018-08-09 20:27:12 +02:00
/typing :
post :
2020-04-16 13:20:32 +02:00
description : |
Send an event indicating that the user has started or stopped typing on
their client.
2018-08-09 20:27:12 +02:00
parameters :
- name : op
in : query
2020-04-16 13:20:32 +02:00
description : |
Whether the user has started (`start`) or stopped (`stop`) to type.
2018-08-09 20:27:12 +02:00
schema :
type : string
enum :
- start
- stop
example : start
required : true
2019-04-23 20:24:07 +02:00
- name : to
2018-08-09 20:27:12 +02:00
in : query
2020-03-07 02:49:01 +01:00
description : |
2020-04-16 13:20:32 +02:00
The user_ids of the recipients of the message being typed. Typing
notifications are only supported for private messages. Send a
JSON-encoded list of user_ids. (Use a list even if there is only one
recipient.).
2020-03-07 02:49:01 +01:00
**Changes**: Before Zulip 2.0, this parameter accepted only a JSON-encoded
list of email addresses. The email address-based format is deprecated
and will be removed in Zulip 2.2.
2018-08-09 20:27:12 +02:00
schema :
type : array
items :
2020-02-22 13:38:09 +01:00
type : integer
example : [ 9 , 10 ]
2018-08-09 20:27:12 +02:00
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2019-06-24 22:27:06 +02:00
/user_groups/create :
post :
2020-04-16 13:20:32 +02:00
description : |
Create a user group.
2019-06-24 22:27:06 +02:00
parameters :
- name : name
in : query
2020-04-16 13:20:32 +02:00
description : |
The name of the user group.
2019-06-24 22:27:06 +02:00
schema :
type : string
example : marketing
required : true
- name : description
in : query
2020-04-16 13:20:32 +02:00
description : |
The description of the user group.
2019-06-24 22:27:06 +02:00
schema :
type : string
example : The marketing team.
required : true
- name : members
in : query
2020-04-16 13:20:32 +02:00
description : |
An array containing the user IDs of the initial members for the
new user group.
2019-06-24 22:27:06 +02:00
schema :
type : array
2019-07-31 01:36:50 +02:00
items :
type : integer
2019-06-24 22:27:06 +02:00
example : [ 1 , 2 , 3 , 4 ]
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"msg": "" ,
"result": "success"
}
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"result": "error" ,
"code": "BAD_REQUEST" ,
"msg": "Invalid user ID: 500"
}
2019-06-25 21:43:53 +02:00
/user_groups/{group_id}:
patch :
2020-04-16 13:20:32 +02:00
description : |
Update the user group.
2019-06-25 21:43:53 +02:00
parameters :
- name : group_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the group.
2019-06-25 21:43:53 +02:00
schema :
type : integer
example : 42
required : true
- name : name
in : query
2020-04-16 13:20:32 +02:00
description : |
The new name of the group.
2019-06-25 21:43:53 +02:00
schema :
type : string
2019-11-14 09:35:28 +01:00
example : marketing team
2019-06-25 21:43:53 +02:00
required : true
- name : description
in : query
2020-04-16 13:20:32 +02:00
description : |
The new description of the group.
2019-06-25 21:43:53 +02:00
schema :
type : string
example : The marketing team.
required : true
responses :
'200' :
2020-03-29 15:55:14 +02:00
$ref : '#/components/responses/SimpleSuccess'
2019-06-24 22:27:06 +02:00
2019-06-25 21:43:53 +02:00
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid user group" ,
"result": "error"
}
2019-06-25 22:00:34 +02:00
delete :
2020-04-16 13:20:32 +02:00
description : |
Delete the user group.
2019-06-25 22:00:34 +02:00
parameters :
- name : group_id
in : path
2020-04-16 13:20:32 +02:00
description : |
The ID of the group.
2019-06-25 22:00:34 +02:00
schema :
type : integer
example : 42
required : true
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- example :
{
"result": "success" ,
"msg": "" ,
}
'400' :
description : Bad request.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "Invalid user group" ,
"result": "error"
}
2018-08-18 23:06:53 +02:00
/user_groups :
get :
2020-04-16 13:20:32 +02:00
description : |
Get all user groups of the realm.
2018-08-18 23:06:53 +02:00
responses :
'200' :
description : Success.
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
user_groups :
type : array
items :
type : object
2020-04-16 13:20:32 +02:00
description : |
A list of `user_group` objects, which contain a `description`, a `name`,
their `id` and the list of members of the user group.
2018-08-18 23:06:53 +02:00
- example :
{
"msg": "" ,
"result": "success" ,
"user_groups": [
{
"description": "Characters of Hamlet" ,
"id": 1 ,
"name": "hamletcharacters" ,
"members": [ 3 , 4 ]
},
{
"description": "Other users" ,
"id": 2 ,
"name": "other users" ,
"members": [ 1 , 2 ]
}
]
}
2020-03-18 02:40:44 +01:00
/real-time :
# This entry is a hack; it exists to give us a place to put the text
# documenting the arguments for call_on_each_event and friends.
post :
2020-04-16 13:20:32 +02:00
description : |
(Ignored)
2020-03-18 02:40:44 +01:00
parameters :
- name : narrow
in : query
description : |
2020-04-16 13:20:32 +02:00
A JSON-encoded array of length 2 indicating the narrow for which you'd
like to receive events for. For instance, to receive events for the
stream `Denmark`, you would specify `narrow=['stream', 'Denmark']`.
Another example is `narrow=['is', 'private']` for private messages.
Default is `[]`.
2020-03-18 02:40:44 +01:00
schema :
type : array
items :
type : string
example : narrow=['stream', 'Denmark']
required : false
2020-04-15 08:24:00 +02:00
- $ref : '#/components/parameters/Event_types'
2020-03-18 02:40:44 +01:00
example : event_types=['message']
security :
- basicAuth : [ ]
2020-04-17 16:16:43 +02:00
responses :
# Makeshift response for this hack entry.
'200' :
description : Success
2020-04-02 02:15:28 +02:00
/rest-error-handling :
post :
description : |
Common error to many endpoints
responses :
2020-04-17 16:16:43 +02:00
'400' :
2020-04-02 02:15:28 +02:00
description : |
Bad request.
content :
application/json :
schema :
2020-04-17 16:16:43 +02:00
oneOf :
- allOf :
- $ref : '#/components/schemas/InvalidApiKeyError'
- allOf :
- $ref : '#/components/schemas/MissingArgumentError'
- allOf :
- $ref : '#/components/schemas/UserNotAuthorizedError'
2020-04-02 03:42:59 +02:00
/zulip-outgoing-webhook :
post :
description : |
2020-04-16 13:20:32 +02:00
Outgoing Webhooks allows to build or set up Zulip integrations which are
notified when certain types of messages are sent in Zulip.
2020-04-02 03:42:59 +02:00
responses :
'200' :
description : |
Success
content :
application/json :
schema :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
data :
type : string
description : |
It contains the content of the message (in Markdown).
trigger :
type : string
description : |
It contains the trigger method.
token :
type : string
description : |
2020-04-16 13:20:32 +02:00
A string of alphanumeric characters that can be use to authenticate the
webhook request (each bot user uses a fixed token).
2020-04-02 03:42:59 +02:00
message :
type : object
description : |
2020-04-16 13:20:32 +02:00
A dict containing details on the message which triggered the outgoing
webhook
2020-04-02 03:42:59 +02:00
bot_email :
type : string
description : |
Email of the bot user
- example :
{
"data": "@**Outgoing Webhook Test** Zulip is the world\u2019s most productive group chat!" ,
"trigger": "mention" ,
"token": "xvOzfurIutdRRVLzpXrIIHXJvNfaJLJ0" ,
"message": {
"subject": "Verona2" ,
"sender_email": "iago@zulip.com" ,
"timestamp": 1527876931 ,
"client": "website" ,
"submessages": [
] ,
"recipient_id": 20 ,
"topic_links": [
] ,
"sender_full_name": "Iago" ,
"avatar_url": "https://secure.gravatar.com/avatar/1f4f1575bf002ae562fea8fc4b861b09?d=identicon&version=1" ,
"rendered_content": "<p><span class=\"user-mention\" data-user-id=\"25\">@Outgoing Webhook Test</span> Zulip is the world\u2019s most productive group chat!</p>" ,
"sender_id": 5 ,
"stream_id": 5 ,
"content": "@**Outgoing Webhook Test** Zulip is the world\u2019s most productive group chat!" ,
"display_recipient": "Verona" ,
"type": "stream" ,
"id": 112 ,
"is_me_message": false ,
"reactions": [
] ,
"sender_realm_str": "zulip" ,
"sender_short_name": "iago"
},
"bot_email": "outgoing-bot@localhost"
}
2020-03-18 02:40:44 +01:00
2018-05-15 18:55:39 +02:00
components :
#######################
# Security definitions
#######################
securitySchemes :
BasicAuth :
type : http
scheme : basic
2020-04-16 13:20:32 +02:00
description : |
Basic authentication, with the user's email as the username, and the API
key as the password. The API key can be fetched using the
`/fetch_api_key` or `/dev_fetch_api_key` endpoints.
2018-05-15 19:28:42 +02:00
2018-05-15 18:55:39 +02:00
schemas :
JsonResponse :
type : object
properties :
2017-06-25 17:52:59 +02:00
result :
2017-05-24 05:22:50 +02:00
type : string
2018-05-15 18:55:39 +02:00
JsonSuccess :
allOf :
- $ref : '#/components/schemas/JsonResponse'
- required :
- result
- msg
- properties :
result :
enum :
- success
msg :
type : string
2018-05-15 19:28:42 +02:00
- example :
{
"msg": "" ,
"result": "success"
}
2018-05-15 18:55:39 +02:00
JsonError :
allOf :
- $ref : '#/components/schemas/JsonResponse'
- required :
- result
- msg
- properties :
result :
enum :
- error
msg :
type : string
2018-06-21 15:23:10 +02:00
ApiKeyResponse :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
2020-03-08 18:06:11 +01:00
- required :
- api_key
- email
2018-06-21 15:23:10 +02:00
- properties :
api_key :
type : string
2020-04-16 13:20:32 +02:00
description : |
The API key that can be used to authenticate as the requested user.
2018-06-21 15:23:10 +02:00
email :
type : string
2020-04-16 13:20:32 +02:00
description : |
The email address of the user who owns the API key.
2018-06-21 15:23:10 +02:00
- example :
{
"api_key": "gjA04ZYcqXKalvYMA8OeXSfzUOLrtbZv" ,
"email": "iago@zulip.com" ,
"msg": "" ,
"result": "success"
}
2018-06-18 18:15:08 +02:00
CodedError :
allOf :
- $ref : '#/components/schemas/JsonError'
- properties :
code :
type : string
2020-04-16 13:20:32 +02:00
description : |
A string that identifies the error.
2018-06-21 01:05:11 +02:00
BadEventQueueIdError :
allOf :
- $ref : '#/components/schemas/CodedError'
- properties :
queue_id :
type : string
2020-04-16 13:20:32 +02:00
description : |
The string that identifies the invalid event queue.
2018-06-21 01:05:11 +02:00
- example :
{
"code": "BAD_EVENT_QUEUE_ID" ,
"msg": "Bad event queue id: 1518820930:1" ,
"queue_id": "1518820930:1" ,
"result": "error"
}
2018-06-23 18:17:05 +02:00
InvalidMessageError :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
raw_content :
type : string
2020-04-16 13:20:32 +02:00
description : |
The raw content of the message.
2018-06-23 18:17:05 +02:00
- example :
{
"msg": "Invalid message(s)" ,
"code": "BAD_REQUEST" ,
"result": "error"
}
2018-06-21 02:25:29 +02:00
NonExistingStreamError :
allOf :
- $ref : '#/components/schemas/CodedError'
- properties :
stream :
type : string
2020-04-16 13:20:32 +02:00
description : |
The name of the stream that could not be found.
2018-06-21 02:25:29 +02:00
- example :
{
"code": "STREAM_DOES_NOT_EXIST" ,
"msg": "Stream 'nonexistent_stream' does not exist" ,
"result": "error" ,
"stream": "nonexistent_stream"
}
2018-06-07 19:47:49 +02:00
AddSubscriptionsResponse :
allOf :
- $ref : '#/components/schemas/JsonSuccess'
- properties :
subscribed :
type : object
2020-04-16 13:20:32 +02:00
description : |
A dictionary where the key is the email address of the user/bot and the
value is a list of the names of the streams that were subscribed to as a
result of the query.
2018-06-07 19:47:49 +02:00
already_subscribed :
type : object
2020-04-16 13:20:32 +02:00
description : |
A dictionary where the key is the email address of the user/bot and the
value is a list of the names of the streams that the user/bot is already
subscribed to.
2018-06-07 19:47:49 +02:00
unauthorized :
type : array
items :
type : string
2020-04-16 13:20:32 +02:00
description : |
A list of names of streams that the requesting user/bot was not
authorized to subscribe to.
2020-04-15 09:23:24 +02:00
InvalidApiKeyError :
allOf :
- $ref : '#/components/schemas/JsonError'
- example :
{
"msg": "Invalid API key" ,
"result": "error"
}
MissingArgumentError :
allOf :
- $ref : '#/components/schemas/CodedError'
- properties :
var_name :
type : string
description : |
It contains the information about the missing argument.
- example :
{
"code": "REQUEST_VARIABLE_MISSING" ,
"msg": "Missing 'content' argument" ,
"result": "error" ,
"var_name": "content"
}
UserNotAuthorizedError :
allOf :
- $ref : '#/components/schemas/CodedError'
- example :
{
"code": "BAD_REQUEST" ,
"msg": "User not authorized for this query" ,
"result": "error"
}
2018-05-15 18:55:39 +02:00
###################
# Shared responses
###################
responses :
SimpleSuccess :
2018-06-21 02:03:15 +02:00
description : Success.
2017-05-24 01:54:20 +02:00
content :
2018-05-15 18:55:39 +02:00
application/json :
schema :
$ref : '#/components/schemas/JsonSuccess'
2020-04-15 08:24:00 +02:00
####################
# Shared parameters
####################
parameters :
Event_types :
name : event_types
in : query
description : |
2020-04-16 13:20:32 +02:00
A JSON-encoded array indicating which types of events you're interested
in. Values that you might find useful include :
2020-04-15 08:24:00 +02:00
* **message** (messages)
* **subscription** (changes in your subscriptions)
* **realm_user** (changes to users in the organization and
their properties, such as their name).
If you do not specify this argument, you will receive all
events, and have to filter out the events not relevant to
your client in your client code. For most applications, one
is only interested in messages, so one specifies :
`event_types=['message']`
schema :
type : array
items :
type : string
required : false