61 KiB
API changelog
This page documents changes to the Zulip Server API over time. See also the Zulip release lifecycle for background on why this API changelog is important, and the Zulip server changelog.
The API feature levels system used in this changelog is designed to make it possible to write API clients, such as the Zulip mobile and terminal apps, that work with a wide range of Zulip server versions. Every change to the Zulip API is recorded briefly here and with full details in Changes entries in the API documentation for the modified endpoint(s).
When using an API endpoint whose behavior has changed, Zulip API
clients should check the zulip_feature_level
field, present in the
GET /server_settings
and POST /register
responses, to determine the API
format used by the Zulip server that they are interacting with.
Changes in Zulip 7.0
Feature level 179:
POST /scheduled_messages
: Added new endpoint to create and edit scheduled messages.GET /events
Addedscheduled_messages
events sent to clients when a user creates, edits or deletes scheduled messages.POST /register
: Added an optionalscheduled_messages
field to that includes all of the undelivered scheduled messages for the current user.
Feature level 178
POST users/me/presence
,POST /register
,GET /events
,GET /realm/presence
,GET /users/<user_id_or_email>/presence
: The server no longer stores which client submitted presence data, and presence responses from the server will always contain theaggregated
andwebsite
keys.
Feature level 177
GET /messages
,GET /messages/matches_narrow
,POST /message/flags/narrow
,POST /register
: Added support for three search/narrow filters related to direct messages:is:dm
,dm
anddm-including
. Thedm
operator replaces and deprecates thepm-with
operator. Theis:dm
filter replaces and deprecates theis:private
filter. Thedm-including
operator replaces and deprecates thegroup-pm-with
operator. Because existing Zulip messages may have links with these legacy filters, they are still supported for backwards-compatibility.
Feature level 176
POST /realm/filters
,realm/filters/<int:filter_id>
: The parameterurl_format_string
is replaced byurl_template
. The linkifiers now accept only RFC 6570 compliant URL Templates. The old URL format strings are no longer supported.GET /events
,POST /register
: The keyurl_format_string
is replaced byurl_template
for therealm_linkifiers
event type. For backwards-compatibility, clients that do not support thelinkifier_url_template
client capability will get an empty list in the response of/register
and not receiverealm_linkifiers
events. Unconditionally, the deprecated event typerealm_filters
gives an empty list in the response of/register
and is no longer sent the clients otherwise.
Feature level 175
POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added new user settingweb_mark_read_on_scroll_policy
. This determines whether to mark messages as read or not as the client scrolls through their feed.
Feature level 174:
POST /typing
,POST /messages
: Added"direct"
as the preferred way to indicate a direct message for thetype
parameter, deprecating the original"private"
. While"private"
is still supported for direct messages, clients are encouraged to use the modern convention with servers that support it, because support for"private"
may eventually be removed.
Feature level 173:
GET /scheduled_messages
,DELETE /scheduled_messages/<int:scheduled_message_id>
: Added new endpoints to fetch and delete scheduled messages.
Feature level 172
PATCH /messages/{message_id}
: Topic editing restrictions now apply to messages without a topic as well.PATCH /messages/{message_id}
: The endpoint now returns an error when users, other than organization administrators and moderators, try to move messages that have passed the time limit usingchange_all
value forpropagate_mode
parameter.
Feature level 171:
POST /fetch_api_key
,POST /dev_fetch_api_key
: The return values for these endpoints now include the unique ID of the user who owns the API key.
Feature level 170
POST /user_topics
: Added a new endpoint to update the personal preferences for a topic.
Feature level 169
PATCH /users/me/subscriptions/muted_topics
: Trying to mute a topic that is already muted or unmute a topic that was not previously muted now results in a success response rather than an error.
Feature level 168
PATCH /realm/user_settings_defaults
,POST /register
,PATCH /settings
: Replaced therealm_name_in_notifications
boolean field with an integer fieldrealm_name_in_email_notifications_policy
.
Feature level 167
- All REST API endpoints:
Implemented
ignored_parameters_unsupported
as a possible return value in the JSON success response for all endpoints. This value is a array of any parameters that were sent in the request by the client that are not supported by the endpoint. Previously, unsupported parameters were silently ignored, except in the subset of endpoints which already supported this return value; see feature levels 111, 96 and 78.
Feature level 166
POST /messages
: Eliminated the undocumentedrealm_str
parameter. This parameter was already redundant due to it needing to match the realm of the user making the request, otherwise returning an authorization error. With this, the parameter is removed, meaning that if provided in the API request, it will be ignored.
Feature level 165
PATCH /user_groups/{user_group_id}
: Thename
anddescription
parameters are now optional.
Feature level 164
POST /register
: Added theserver_presence_ping_interval_seconds
andserver_presence_offline_threshold_seconds
attributes.
Feature level 163
GET /users
,GET /users/{user_id}
,GET /users/{email}
,GET /users/me
andGET /events
: Thedelivery_email
field is always present in user objects, including the case whenemail_address_visibility
is set toEMAIL_ADDRESS_VISIBILITY_EVERYONE
, with the value beingNone
if the requestor does not have access to the user's real email. For bot users, thedelivery_email
field is always set to the real email.GET /events
: Event for updatingdelivery_email
is now sent to all users who have access to it and is also sent whenemail_address_visibility
setting changes.POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added user settingemail_address_visibility
which will replace the existing realm settingemail_address_visibility
.POST /register
,PATCH /realm
: Removed realm-levelemail_address_visibility
setting.
Feature level 162
POST /register
,GET /events
,PATCH /realm
: Added newmove_messages_within_stream_limit_seconds
setting.POST /register
,GET /events
,PATCH /realm
: Added newmove_messages_between_streams_limit_seconds
setting.PATCH /messages/{message_id}
: Time limit to edit topics, for users other than administrators and moderators, can now be configured usingmove_messages_within_stream_limit_seconds
setting.PATCH /messages/{message_id}
: Time limit to move messages between streams, for users other than administrators and moderators, can now be configured usingmove_messages_between_streams_limit_seconds
setting.
Feature level 161
PATCH /streams/{stream_id}
: Addedcan_remove_subscribers_group_id
parameter to support changingcan_remove_subscribers_group
setting.POST /users/me/subscriptions
: Addedcan_remove_subscribers_group_id
parameter to setcan_remove_subscribers_group
setting while creating streams.
Feature level 160
POST /api/v1/jwt/fetch_api_key
: New API endpoint to fetch API keys using JSON Web Token (JWT) authentication.accounts/login/jwt/
: Adjusted format of requests to this previously undocumented, optional endpoint for JWT authentication log in support.
Feature level 159
POST /register
,GET /events
,PATCH /realm
: Nobody added as an option for the realm settingedit_topic_policy
.POST /register
,GET /events
,PATCH /realm
: Nobody added as an option for the realm settingmove_messages_between_streams_policy
.PATCH /messages/{message_id}
: Permission to edit stream and topic of messages do not depend onallow_message_editing
setting now.PATCH /messages/{message_id}
: Message senders are not allowed to edit topics indefinitely now.
Feature levels 157-158 are reserved for future use in 6.x maintenance releases.
Changes in Zulip 6.0
Feature level 156
No changes; feature level used for Zulip 6.0 release.
Feature level 155
GET /messages
: The newinclude_anchor
parameter controls whether a message with ID matching the specifiedanchor
should be included.- The
update_message_flags
event sent byPOST /messages/flags
no longer redundantly lists messages where the flag was set to the same state it was already in. POST /messages/flags/narrow
: This new endpoint allows updating message flags on a range of messages within a narrow.
Feature level 154
POST /streams/{stream_id}/delete_topic
: When the process of deleting messages times out, a success response with "partially_completed" result will now be returned by the server, analogically to the/mark_all_as_read
endpoint.
Feature level 153
POST /mark_all_as_read
: Messages are now marked as read in batches, so that progress will be made even if the request times out because of an extremely large number of unread messages to process. Upon timeout, a success response with a "partially_completed" result will be returned by the server.
Feature level 152
PATCH /messages/{message_id}
: Thesend_notification_to_old_thread
andsend_notification_to_new_thread
parameters are now respected when moving a topic within a stream. The default value forsend_notification_to_old_thread
was changed fromtrue
tofalse
.
Feature level 151
POST /register
,GET /events
,POST /realm/profile_fields
,GET /realm/profile_fields
: Added pronouns custom profile field type.
Feature level 150
GET /events
: Separate events are now sent on changingallow_message_editing
,message_content_edit_limit_seconds
andedit_topic_policy
settings, whereas previously one event was sent including all of these setting values irrespective of which of them were actually changed.PATCH /realm
: Only changed settings are included in the response data now when changingallow_message_editing
,edit_topic_policy
andmessage_content_edit_limit_seconds
settings, instead of including all the fields even if one of these settings was changed.
Feature level 149
POST /register
: Theclient_gravatar
andinclude_subscribers
parameters now return an error for unauthenticated requests if an unsupported value is requested by the client.
Feature level 148
POST /users/me/status
,POST /register
,GET /events
: The user statusaway
field/parameter is deprecated, and as of this feature level are a legacy way to access the user'spresence_enabled
setting, withaway = !presence_enabled
. To be removed in a future release.
Feature level 147
POST /streams/{stream_id}/delete_topic
: Messages now are deleted in batches, starting from the newest, so that progress will be made even if the request times out because of an extremely large topic.
Feature level 146
POST /realm/profile_fields
,GET /realm/profile_fields
: Added a new parameterdisplay_in_profile_summary
, which clients use to decide whether to display the field in a small/summary section of the user's profile.
Feature level 145
DELETE users/me/subscriptions
: Normal users can now remove bots that they own from streams.
Feature level 144
GET /messages/{message_id}/read_receipts
: Theuser_ids
array returned by the server no longer includes IDs of users who have been muted by or have muted the current user.
Feature level 143
PATCH /realm
: Thedisallow_disposable_email_addresses
,emails_restricted_to_domains
,invite_required
, andwaiting_period_threshold
settings can no longer be changed by organization administrators who are not owners.PATCH /realm/domains
,POST /realm/domains
,DELETE /realm/domains
: Organization administrators who are not owners can no longer access these endpoints.
Feature level 142
GET users/me/subscriptions
,GET /streams
,POST /register
,GET /events
: Addedcan_remove_subscribers_group_id
field to Stream and Subscription objects.
Feature level 141
POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added newuser_list_style
display setting, which controls the layout of the right sidebar.
Feature level 140
POST /register
: Added string fieldserver_emoji_data_url
to the response.
Feature level 139
GET /get-events
: When a user mutes or unmutes their subscription to a stream, asubscription
update event is now sent for theis_muted
property and for the deprecatedin_home_view
property to support clients fully migrating to use theis_muted
property. Prior to this feature level, only one event was sent to clients with the deprecatedin_home_view
property.
Feature level 138
POST /register
,GET /events
:message_content_edit_limit_seconds
now represents no limit usingnull
, instead of the integer 0.PATCH /realm
: One now setsmessage_content_edit_limit_seconds
to no limit by passing the stringunlimited
, rather than the integer 0.
Feature level 137
GET /messages/{message_id}/read_receipts
: Added new endpoint to fetch read receipts for a message.POST /register
,GET /events
,PATCH /realm
: Added newenable_read_receipts
realm setting.
Feature level 136
PATCH /streams/{stream_id}
: The endpoint now returns an error for a request to make a public stream with protected history which was previously ignored silently.PATCH /streams/{stream_id}
: Added support to change access to history of the stream by only passinghistory_public_to_subscribers
parameter withoutis_private
andis_web_public
parameters.
Feature level 135
DELETE /user/{user_id}
: Addeddeactivation_notification_comment
field controlling whether the user receives a notification email about their deactivation.
Feature level 134
GET /events
: Addeduser_topic
event type which is sent when a topic is muted or unmuted. This generalizes and replaces the previousmuted_topics
array, which will no longer be sent ifuser_topic
was included inevent_types
when registering the queue.POST /register
: Addeduser_topics
array to the response. This generalizes and replaces the previousmuted_topics
array, which will no longer be sent ifuser_topic
is included infetch_event_types
.
Feature level 133
POST /register
,PATCH /realm
: Removed stream administrators option fromwildcard_mention_policy
setting.POST /register
,GET /events
,GET /users/me/subscriptions
: Removedrole
field from subscription objects.
Feature level 132
GET /streams/{stream_id}
: Added new endpoint to get a stream by ID.
Feature level 131
GET /user_groups
,POST /register
: Renamedsubgroups
field in the user group objects todirect_subgroup_ids
.GET /events
: Renamedsubgroup_ids
field in the group object todirect_subgroup_ids
.
Feature level 130
PATCH /bots/{bot_user_id}
: Added support for changing a bot's role via this endpoint. Previously, this could only be done viaPATCH /users/{user_id}
.
Feature level 129
POST /register
,GET /events
,PATCH /realm
: Added realm settingwant_advertise_in_communities_directory
for organizations to give permission to be advertised in the Zulip communities directory.
Feature level 128
POST /register
,GET /events
,PATCH /realm
: Addedorg_type
realm setting.
Feature level 127
GET /user_groups
,POST /register
: Addedsubgroups
field, which is a list of IDs of all the subgroups of the user group, to user group objects.GET /events
: Added newuser_group
events operations for live updates to subgroups (add_subgroups
andremove_subgroups
).PATCH /user_groups/{user_group_id}/subgroups
: Added new endpoint for updating subgroups of a user group.GET /user_groups/{user_group_id}/members/{user_id}
: Added new endpoint for checking whether a given user is member of a given user group.GET /user_groups/{user_group_id}/members
: Added new endpoint to get members of a user group.GET /user_groups/{user_group_id}/members
: Added new endpoint to get subgroups of a user group.
Feature level 126
POST /invites
,POST /invites/multiuse
: Replacedinvite_expires_in_days
parameter withinvite_expires_in_minutes
.
Feature level 125
POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added newdisplay_emoji_reaction_users
display setting, controlling whether to display the names of users with emoji reactions.
Feature levels 123-124 are reserved for future use in 5.x maintenance releases.
Changes in Zulip 5.0
Feature level 122
No changes; feature level used for Zulip 5.0 release.
Feature level 121
GET /events
: Addedmessage_details
field appearing in message flag update events when marking previously read messages as unread.
Feature level 120
GET /messages/{message_id}
: This endpoint now sends the full message details. Previously, it only returned the message's raw Markdown content.
Feature level 119
POST /register
: Theunread_msgs
section of the response now prefersother_user_id
over the poorly namedsender_id
field in thepms
dictionaries. This change is motivated by the possibility that a message you yourself sent to another user could be marked as unread.
Feature level 118
-
GET /messages
,GET /events
: Improved the format of theedit_history
object within message objects. Entries for stream edits now include a both aprev_stream
andstream
field to indicate the previous and current stream IDs. Entries for topic edits now include both aprev_topic
andtopic
field to indicate the previous and current topic, replacing theprev_subject
field. These changes substantially simplify client complexity for processing historical message edits. -
GET messages/{message_id}/history
: Addedstream
field to message historysnapshot
indicating the updated stream ID of messages moved to a new stream.
Feature level 117
POST /invites
,POST /invites/multiuse
: Added support for passingnull
as theinvite_expires_in_days
parameter to request an invitation that never expires.
Feature level 116
GET /server_settings
: Addedrealm_web_public_access_enabled
as a realm-specific server setting, which can be used by clients to detect whether the realm allows and has at least one web-public stream.
Feature level 115
- Mobile push notifications about stream messages now include the
stream_id
field.
Feature level 114
-
GET /events
: Addedrendering_only
field toupdate_message
event type to indicate if the message change only updated the rendering of the message or if it was the result of a user interaction. -
GET /events
: Updatedupdate_message
event type to always includeedit_timestamp
anduser_id
fields. If the event only updates the rendering of the message, then theuser_id
field will be present, but with a value of null as the update was not the result of a user interaction.
Feature level 113
GET /realm/emoji
,POST /realm/emoji/{emoji_name}
,GET /events
,POST /register
: Thestill_url
field for custom emoji objects is now always present, with a value of null for non-animated emoji. Previously, it only was present for animated emoji.
Feature level 112
GET /events
: Updatedupdate_message
event type to includestream_id
field for all edits to stream messages.
Feature level 111
POST /users/me/subscriptions/properties
: Removedsubscription_data
from response object, replacing it withignored_parameters_unsupported
.
Feature level 110
POST /register
: Addedserver_web_public_streams_enabled
to the response.
Feature level 109
POST /register
,GET /events
,PATCH /realm
: Added newenable_spectator_access
realm setting.
Feature level 108
- In the mobile application authentication flow, the authenticated
user's
user_id
is now included in the parameters encoded in the finalzulip://
redirect URL.
Feature level 107
POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added user settingescape_navigates_to_default_view
to allow users to disable the keyboard shortcut for theEsc
key that navigates the app to the default view.
Feature level 106
PATCH /user/{user_id}
: Removed unnecessary JSON-encoding of string parameterfull_name
.
Feature level 105
POST /register
,PATCH /settings
,PATCH /realm/user_settings_defaults
: Added three new privacy settings:send_private_typing_notifications
,send_stream_typing_notifications
, andsend_read_receipts
.
Feature level 104
PATCH /realm
: Addedstring_id
parameter for changing an organization's subdomain. Currently, this is only allowed for changing a demo organization to a normal one.
Feature level 103
POST /register
: Addedcreate_web_public_stream_policy
policy for which users can create web-public streams.GET /events
,PATCH /realm
: Added support for updatingcreate_web_public_stream_policy
.POST /register
: Addedcan_create_web_public_streams
boolean field to the response.
Feature level 102
POST /register
,PATCH /realm
: Thecreate_stream_policy
setting was split into two settings for different types of streams:create_private_stream_policy
andcreate_public_stream_policy
.POST /register
: Thecreate_stream_policy
property was deprecated in favor of thecreate_private_stream_policy
andcreate_public_stream_policy
properties, but it still available for backwards-compatibility.
Feature level 101
POST /register
,PATCH /realm
: Replaced theallow_message_deleting
boolean field with an integer fielddelete_own_message_policy
defining which roles can delete messages they had sent.
Feature level 100
POST /register
,GET /events
:message_content_delete_limit_seconds
now represents no limit usingnull
, instead of the integer 0, and 0 is no longer a possible value with any meaning.PATCH /realm
: One now setsmessage_content_delete_limit_seconds
to no limit by passing the stringunlimited
, rather than the integer 0.
Feature level 99
-
PATCH /realm/user_settings_defaults
,PATCH /realm
: Thedefault_twenty_four_hour_time
parameter toPATCH /realm
has been replaced by thetwenty_four_hour_time
parameter toPATCH /realm/user_settings_defaults
, to match the new model for user preference defaults settings. -
POST /register
: Removedrealm_default_twenty_four_hour_time
from the response object. This value is now available in thetwenty_four_hour_time
field of therealm_user_settings_default
object.
Feature level 98
POST /subscribe
: Addedis_web_public
parameter for requesting the creation of a web-public stream.PATCH /streams/{stream_id}
: Addedis_web_public
parameter for converting a stream into a web-public stream.
Feature level 97
GET /realm/emoji
,POST /realm/emoji/{emoji_name}
,GET /events
,POST /register
: Custom emoji objects may now contain astill_url
field, with the URL of a PNG still image version of the emoji. This field will only be present for animated emoji.
Feature level 96
PATCH /realm/user_settings_defaults
: Added new endpoint to update default values of user settings in a realm.POST /invites
,POST /invites/multiuse
: Addedinvite_expires_in_days
parameter encoding the number days before the invitation should expire.
Feature level 95
-
POST /register
: Addedrealm_user_settings_defaults
object, containing default values of personal user settings for new users in the realm. -
GET /events
: Addedrealm_user_settings_defaults
event type, which is sent when the organization's configured default settings for new users change.
Feature level 94
POST /register
: Addeddemo_organization_scheduled_deletion_date
field to realm data.
Feature level 93
POST /register
,GET /user_groups
,GET /events
: Addedis_system_group
field to user group objects.
Feature level 92
GET /messages
,POST /register
,GET /users
,GET /users/{user_id}
,GET /users/{email}
: Theclient_gravatar
parameter now defaults totrue
.
Feature level 91
PATCH /realm
,PATCH /streams/{stream_id}
: These endpoints now accept"unlimited"
formessage_retention_days
, replacing"forever"
as the way to encode a retention policy where messages are not automatically deleted.
Feature level 90
POST /register
: Theunread_msgs
section of the response no longer includessender_ids
in thestreams
dictionaries. These were removed because no clients were interested in using the data, which required substantial complexity to construct correctly.
Feature level 89
GET /events
: Introduced theuser_settings
event type, unifying and replacing the previousupdate_display_settings
andupdate_global_notifications
event types. The legacy event types are still supported for backwards compatibility, but will be removed in a future release.POST /register
: Addeduser_settings
field in the response, which is a dictionary containing all the user's personal settings. For backwards-compatibility, individual settings will still appear in the top-level response for clients don't support theuser_settings_object
client capability.POST /register
: Added theuser_settings_object
property to supportedclient_capabilities
. When enabled, the server will not include a duplicate copy of personal settings in the top-level response.GET /events
:update_display_settings
andupdate_global_notifications
events now only sent to clients that did not includeuser_settings_object
in theirclient_capabilities
when the event queue was created.
Feature level 88
POST /register
: Addedzulip_merge_base
field to the response.GET /events
: Added newzulip_merge_base
field to therestart
event.GET /server_settings
: Addedzulip_merge_base
to the responses which can be used to make "About Zulip" widgets in clients.
Feature level 87
-
PATCH /settings
: Added a newenable_drafts_synchronization
setting, which controls whether the syncing drafts between different clients is enabled. -
GET /events
,POST /register
: Added newenable_drafts_synchronization
setting underupdate_display_settings
. -
GET /drafts
: Added new endpoint to fetch user's synced drafts from the server. -
POST /drafts
: Added new endpoint to create drafts when syncing has been enabled. -
PATCH /drafts/{draft_id}
: Added new endpoint to edit a draft already owned by the user. -
DELETE /drafts/{draft_id}
: Added new endpoint to delete a draft already owned by the user.
Feature level 86
GET /events
: Addedemoji_name
,emoji_code
, andreaction_type
fields touser_status
objects.POST /register
: Addedemoji_name
,emoji_code
, andreaction_type
fields touser_status
objects.POST /users/me/status
: Added support for newemoji_name
,emoji_code
, andreaction_type
parameters.
Feature level 85
POST /register
,PATCH /realm
: Replacedadd_emoji_by_admins_only
field with an integer fieldadd_custom_emoji_policy
.
Feature level 84
POST /register
: Theenter_sends
setting is now sent whenupdate_display_setting
is present infetch_event_types
instead ofrealm_user
.
Feature level 83
-
POST /register
: Thecross_realm_bots
section of the response now uses theis_system_bot
flag to indicate whether the bot is a system bot.
Feature level 82
PATCH /settings
now accepts a newemail_notifications_batching_period_seconds
field for setting the time duration for which the server will collect email notifications before sending them.
Feature level 81
POST /users/me/enter-sends
has been removed. Theenter_sends
setting is now edited using the normalPATCH /settings
endpoint.
Feature level 80
PATCH /settings
: The/settings/notifications
and/settings/display
endpoints were merged into the main/settings
endpoint; now all personal settings should be edited using that single endpoint. The old URLs are preserved as deprecated aliases for backwards compatibility.
Feature level 79
GET /users/me/subscriptions
: Thesubscribers
field now returns user IDs ifinclude_subscribers
is passed. Previously, this endpoint returned user display email addresses in this field.GET /streams/{stream_id}/members
: This endpoint now returns user IDs. Previously, it returned display email addresses.
Feature level 78
-
PATCH /settings
: Addedignored_parameters_unsupported
field, which is a list of parameters that were ignored by the endpoint, to the response object. -
PATCH /settings
: Removedfull_name
andaccount_email
fields from the response object.
Feature level 77
GET /events
: Removedrecipient_id
andsender_id
field in responses ofdelete_message
event whenmessage_type
isprivate
.
Feature level 76
POST /fetch_api_key
,POST /dev_fetch_api_key
: The HTTP status for authentication errors is now 401. This was previously 403.- All API endpoints now use the HTTP 401 error status for API requests involving a deactivated user or realm. This was previously 403.
- Mobile push notifications now include the
mentioned_user_group_id
andmentioned_user_group_name
fields when a user group containing the user is mentioned. Previously, these were indistinguishable from personal mentions (as both types havetrigger="mention"
).
Feature level 75
POST /register
,PATCH /realm
: Replacedallow_community_topic_editing
field with an integer fieldedit_topic_policy
.
Feature level 74
POST /register
: Addedserver_needs_upgrade
andevent_queue_longpoll_timeout_seconds
field when fetching realm data.
Feature level 73
GET /users
,GET /users/{user_id}
,GET /users/{email}
andGET /users/me
: Added isuser_billing_admin
field to returned user objects.GET /events
: Addedis_billing_admin
field to user objects sent inrealm_user
events.POST /register
: Addedis_billing_admin
field in the user objects returned in therealm_users
field.
Feature level 72
POST /register
: Renamedmax_icon_file_size
tomax_icon_file_size_mib
,realm_upload_quota
torealm_upload_quota_mib
andmax_logo_file_size
tomax_logo_file_size_mib
.
Feature level 71
GET /events
: Addedis_web_public
field tostream
events changinginvite_only
.
Feature level 70
POST /register
: Added new top-levelserver_timestamp
field when fetching presence data, to match the existing presence API.
Feature levels 66-69 are reserved for future use in 4.x maintenance releases.
Changes in Zulip 4.0
Feature level 65
No changes; feature level used for Zulip 4.0 release.
Feature level 64
PATCH /streams/{stream_id}
: Removed unnecessary JSON-encoding of string parametersnew_name
anddescription
.PATCH /settings/display
: Removed unnecessary JSON-encoding of string parametersdefault_view
,emojiset
andtimezone
.
Feature level 63
PATCH /settings/notifications
: Removed unnecessary JSON-encoding of string parameternotification_sound
.PATCH /settings/display
: Removed unnecessary JSON-encoding of string parameterdefault_language
.POST /users/me/tutorial_status
: Removed unnecessary JSON-encoding of string parameterstatus
.POST /realm/domains
: Removed unnecessary JSON-encoding of string parameterdomain
.PATCH /default_stream_groups/{user_id}
: Removed unnecessary JSON-encoding of string parametersnew_group_name
andnew_description
.POST /users/me/hotspots
: Removed unnecessary JSON-encoding of string parameterhotspot
.
Feature level 62
- Added
moderators only
option forwildcard_mention_policy
.
Feature level 61
POST /invites
,POST /invites/multiuse
: Added support for inviting users as moderators.
Feature level 60
POST /register
: Added a new boolean fieldis_moderator
, similar to the existingis_admin
,is_owner
andis_guest
fields, to the response.PATCH /users/{user_id}
: Added support for changing a user's organization-level role to moderator.- API endpoints that return
role
values can now return300
, the encoding of the moderator role.
Feature level 59
GET /users
,GET /users/{user_id}
,GET /users/{email}
andGET /users/me
: Addedrole
field to returned user objects.GET /events
: Addedrole
field to user objects sent inrealm_user
events.POST /register
: Addedrole
field in the user objects returned in therealm_users
field.GET /events
: Added newzulip_version
andzulip_feature_level
fields to therestart
event.
Feature level 58
POST /register
: Added the newstream_typing_notifications
property to supportedclient_capabilities
.GET /events
: Extended format fortyping
events to support typing notifications in stream messages. These new events are only sent to clients withclient_capabilities
showing support forstream_typing_notifications
.POST /set-typing-status
: Added support for sending typing notifications for stream messages.
Feature level 57
PATCH /realm/filters/{filter_id}
: New endpoint added to update a realm linkifier.
Feature level 56
POST /register
: Added a new settingmove_messages_between_streams_policy
for controlling who can move messages between streams.
Feature level 55
POST /register
: Addedrealm_giphy_rating
andgiphy_rating_options
fields.PATCH /realm
: Addedgiphy_rating
parameter.
Feature level 54
GET /realm/filters
has been removed and replace withGET /realm/linkifiers
which returns the data in a cleaner dictionary format.GET /events
: Introduced new event typerealm_linkifiers
. The previousrealm_filters
event type is still supported for backwards compatibility, but will be removed in a future release.POST /register
: The response now supports arealm_linkifiers
event type, containing the same data as the legacyrealm_filters
key, with a more extensible object format. The previousrealm_filters
event type is still supported for backwards compatibility, but will be removed in a future release. The legacyrealm_filters
key is deprecated but remains available for backwards compatibility.
Feature level 53
POST /register
: Addedmax_topic_length
andmax_message_length
, and renamedmax_stream_name_length
andmax_stream_description_length
to allow clients to transparently support these values changing in a future server version.
Feature level 52
PATCH /realm
: Removed unnecessary JSON-encoding of string parametersname
,description
,default_language
, anddefault_code_block_language
.
Feature level 51
POST /register
: Added a new boolean fieldcan_invite_others_to_realm
.
Feature level 50
POST /register
: Replacedinvite_by_admins_only
field with an integer fieldinvite_to_realm_policy
.
Feature level 49
- Added new
POST /realm/playground
andDELETE /realm/playground/{playground_id}
endpoints for code playgrounds. GET /events
: A newrealm_playgrounds
events is sent when changes are made to a set of configured code playgrounds for an organization.POST /register
: Added a newrealm_playgrounds
field, which is required to fetch the set of configured code playgrounds for an organization.
Feature level 48
POST /users/me/muted_users/{muted_user_id}
,DELETE /users/me/muted_users/{muted_user_id}
: New endpoints added to mute/unmute users.GET /events
: Added new event typemuted_users
which will be sent to a user when the set of users muted by them has changed.
Feature level 47
POST /register
: Added a newgiphy_api_key
field, which is required to fetch GIFs using the GIPHY API.
Feature level 46
GET /messages
andGET /events
: Thetopic_links
field now contains a list of dictionaries, rather than a list of strings.
Feature level 45
GET /events
: Removed uselessop
field fromcustom_profile_fields
events. These events contain the full set of configuredcustom_profile_fields
for the organization regardless of what triggered the change.
Feature level 44
POST /register
: extended theunread_msgs
object to includeold_unreads_missing
, which indicates whether the server truncated theunread_msgs
due to excessive total unread messages.
Feature level 43
GET /users/{user_id_or_email}/presence
: Added support for passing theuser_id
to identify the target user.
Feature level 42
PATCH /settings/display
: Added a newdefault_view
setting allowing the user to set the default view.
Feature level 41
GET /events
: Removedname
field from update subscription events.
Feature level 40
GET /events
: Removedemail
field from update subscription events.
Feature level 39
- Added new
GET /users/{email}
endpoint.
Feature level 38
POST /register
: Increasedrealm_community_topic_editing_limit_seconds
time limit value to 259200s (3 days).
Feature level 37
- Consistently provide
subscribers
in stream data when clients register for subscriptions withinclude_subscribers
, even if the user can't access subscribers.
Feature level 36
POST /users
: Restricted access to organization administrators with thecan_create_users
permission.- Error handling: The
code
property will now be present in errors due to rate limits.
Feature level 35
- The peer_add and peer_remove subscription events now have plural
versions of
user_ids
andstream_ids
.
Feature level 34
POST /register
: Added a newwildcard_mention_policy
setting for controlling who can use wildcard mentions in large streams.
Feature level 33
- Markdown code blocks now have a
data-code-language
attribute attached to the outerdiv
element, recording the programming language that was selecting for syntax highlighting. This field supports the upcoming "view in playground" feature for code blocks.
Feature level 32
GET /events
: Addedop
field toupdate_message_flags
events, deprecating theoperation
field (which has the same value). This removes an unintentional anomaly in the format of this event type.
Feature level 31
-
GET users/me/subscriptions
: Added arole
field to Subscription objects representing whether the user is a stream administrator. -
GET /events
: Addedrole
field to Subscription objects sent insubscriptions
events.
Note that as of this feature level, stream administrators are a partially completed feature. In particular, it is impossible for a user to be a stream administrator at this feature level.
Feature level 30
GET users/me/subscriptions
,GET /streams
: Addeddate_created
to Stream objects.POST /users
,POST /bots
: The ID of the newly created user is now returned in the response.
Feature levels 28 and 29 are reserved for future use in 3.x bug fix releases.
Changes in Zulip 3.1
Feature level 27
POST /users
: Removedshort_name
field fromdisplay_recipient
array objects.
Feature level 26
GET /messages
:sender_short_name
field is no longer included in return values for this endpoint.GET /messages
: Removedshort_name
field fromdisplay_recipient
array objects.
Changes in Zulip 3.0
Feature level 25
No changes; feature level used for Zulip 3.0 release.
Feature level 24
- The
!avatar()
and!gravatar()
Markdown syntax, which was never documented, had inconsistent syntax, and was rarely used, was removed.
Feature level 23
GET/PUT/POST /users/me/pointer
: Removed. Zulip 3.0 removes thepointer
concept from Zulip; this legacy data structure was replaced by tracking unread messages and loading views centered on the first unread message.
Feature level 22
GET /attachments
: The date when a message using the attachment was sent is now correctly encoded asdate_sent
, replacing the confusingly namedname
field. Thedate_sent
andcreate_time
fields of attachment objects are now encoded as integers; (previously the implementation could send floats incorrectly suggesting that microsecond precision is relevant).GET /invites
: Now encodes the user ID of the person who created the invitation asinvited_by_user_id
, replacing the previousref
field (which had that user's Zulip display email address).POST /register
: The encoding of an unlimitedrealm_message_retention_days
in the response was changed fromnull
to-1
.
Feature level 21
PATCH /settings/display
: Replaced thenight_mode
boolean withcolor_scheme
as part of supporting automatic night theme detection.
Feature level 20
- Added support for inviting users as organization owners to the invitation endpoints.
Feature level 19
GET /events
:subscriptions
event withop="peer_add"
andop="peer_remove"
now identify the modified stream by astream_id
field, replacing the oldname
field.
Feature level 18
POST /register
: Addeduser_avatar_url_field_optional
to supportedclient_capabilities
.
Feature level 17
GET users/me/subscriptions
,GET /streams
: Addedmessage_retention_days
to Stream objects.POST users/me/subscriptions
,PATCH streams/{stream_id}
: Addedmessage_retention_days
parameter.
Feature level 16
GET /users/me
: Removedpointer
from the response, as the "pointer" concept is being removed in Zulip.- Changed the rendered HTML markup for mentioning a time to use the
<time>
HTML tag. It is OK for clients to ignore the previous time mention markup, as the feature was not advertised before this change.
Feature level 15
- Added spoilers to supported Markdown features.
Feature level 14
GET users/me/subscriptions
: Removed theis_old_stream
field from Stream objects. This field was always equivalent tostream_weekly_traffic != null
on the same object.
Feature level 13
POST /register
: Addedbulk_message_deletion
to supportedclient_capabilities
.GET /events
:delete_message
events have new behavior. Thesender
andsender_id
fields were removed, and themessage_id
field was replaced by amessage_ids
list for clients with thebulk_message_deletion
client capability. All clients should upgrade; we expectbulk_message_deletion
to be required in the future.
Feature level 12
GET users/{user_id}/subscriptions/{stream_id}
: New endpoint added for checking if another user is subscribed to a stream.
Feature level 11
POST /register
: Addedrealm_community_topic_editing_limit_seconds
to the response, the time limit before community topic editing is forbidden. Anull
value means no limit. This was previously hard-coded in the server as 86400 seconds (1 day).POST /register
: The response now contains ais_owner
, similar to the existingis_admin
andis_guest
fields.POST /set-typing-status
: Removed legacy support for sending email addresses, rather than user IDs, to encode private message recipients.
Feature level 10
GET users/me
: Addedavatar_version
,is_guest
,is_active
,timezone
, anddate_joined
fields to the User objects.GET users/me
: Removedclient_id
andshort_name
from the response to this endpoint. These fields had no purpose and were inconsistent with other API responses describing users.
Feature level 9
POST users/me/subscriptions
,DELETE /users/me/subscriptions
: Other users to subscribe/unsubscribe, declared in theprincipals
parameter, can now be referenced by user_id, rather than Zulip display email address.PATCH /messages/{message_id}
: Addedsend_notification_to_old_thread
andsend_notification_to_new_thread
optional parameters.
Feature level 8
GET /users
,GET /users/{user_id}
andGET /users/me
: User objects now contain theis_owner
field as well.- Added time mentions to supported Markdown features.
Feature level 7
GET /events
:realm_user
andrealm_bot
events no longer contain anemail
field to identify the user; use theuser_id
field instead. Previously, some (but not all) events of these types contained anemail
key in addition to touser_id
) for identifying the modified user.PATCH /users/{user_id}
: Theis_admin
andis_guest
parameters were removed in favor of the more generalrole
parameter for specifying a change in user role.GET /events
:realm_user
events sent when a user's role changes now includerole
property, instead of the previousis_guest
oris_admin
booleans.GET /realm/emoji
: The user who uploaded a given custom emoji is now indicated by anauthor_id
field, replacing a previousauthor
object that had unnecessary additional data.
Feature level 6
GET /events
:realm_user
events to update a user's avatar now include theavatar_version
field, which is important for correctly refetching medium-size avatar images when the user's avatar changes.GET /users
andGET /users/{user_id}
: User objects now contain theavatar_version
field as well.
Feature level 5
GET /events
:realm_bot
events, sent when changes are made to bot users, now contain an integer-formatowner_id
field, replacing theowner
field (which was an email address).
Feature level 4
jitsi_server_url
,development_environment
,server_generation
,password_min_length
,password_min_guesses
,max_file_upload_size_mib
,max_avatar_file_size_mib
,server_inline_image_preview
,server_inline_url_embed_preview
,server_avatar_changes_disabled
andserver_name_changes_disabled
fields are now available viaPOST /register
to make them accessible to all the clients; they were only internally available to Zulip's web app prior to this.
Feature level 3:
zulip_version
andzulip_feature_level
are always returned inPOST /register
; previously they were only returned ifevent_types
includedzulip_version
.- Added new
presence_enabled
user notification setting; previously presence was always enabled.
Feature level 2:
POST /messages/{message_id}/reactions
: Thereaction_type
parameter is optional; the server will guess thereaction_type
if it is not specified (checking custom emoji, then Unicode emoji for any with the provided name).reactions
objects returned by the API (both inGET /messages
and inGET /events
) now include the user who reacted in a top-leveluser_id
field. The legacyuser
dictionary (which had inconsistent format between those two endpoints) is deprecated.
Feature level 1:
GET /server_settings
: Addedzulip_feature_level
, which can be used by clients to detect which of the features described in this changelog are supported.POST /register
: Addedzulip_feature_level
to the response ifzulip_version
is among the requestedevent_types
.GET /users
: User objects for bots now contain abot_owner_id
, replacing the previousbot_owner
field (which had the email address of the bot owner).GET /users/{user_id}
: New endpoint added to get a single user's details by the user's ID.GET /messages
: Add support for string-format values for theanchor
parameter, deprecating and replacing theuse_first_unread_anchor
parameter.GET /messages
,GET /events
: Message objects now usetopic_links
rather thansubject_links
to indicate links either present in the topic or generated by linkifiers applied to the topic.GET /streams
,POST /users/me/subscriptions
,PATCH /streams/{stream_id}
: Stream objects now havestream_post_policy
enum for specifying who can post to the stream, deprecating and replacing theis_announcement_only
boolean.GET /user_uploads/{realm_id_str}/{filename}
: New endpoint added for requesting a temporary URL for an uploaded file that does not require authentication to access (e.g. for passing from a Zulip desktop, mobile, or terminal app to the user's default browser).POST /register
,GET /events
,PATCH /realm
: Nobody added as an option for the realm settingemail_address_visibility
.POST /register
,GET /events
,PATCH /realm
: Added realm settingprivate_message_policy
.POST /register
,GET /events
:muted_topics
array objects now are 3-item tuples that include the stream name, the topic name, and the time when the topic was muted. Previously, they were 2-item tuples and did not include the time when the topic was muted.GET /server_settings
: Addedgitlab
boolean to deprecatedauthentication_methods
object.POST /register
,GET /events
,PATCH /realm
: None added as an option for the realm settingvideo_chat_provider
to disable video call UI.
Changes in Zulip 2.1
GET /messages
: Added support for search/narrow options that use stream/user IDs to specify a message's sender, its stream, and/or its recipient(s).GET /users
: Addedinclude_custom_profile_fields
to request custom profile field data.GET /users/me
: Addedavatar_url
field, containing the user's avatar URL, to the response.GET /users/me/subscriptions
: Addedinclude_subscribers
parameter controlling whether data on the other subscribers is included. Previous behavior was to always send subscriber data.GET /users/me/subscriptions
: Stream-level notification settings likepush_notifications
were changed to be nullable boolean fields (true/false/null), withnull
meaning that the stream inherits the organization-level default. Previously, the only values were true/false. A client communicates support for this feature usingclient_capabilities
.GET /users/me/subscriptions
: Addedwildcard_mentions_notify
notification setting, with the same global-plus-stream-level-override model as other notification settings.GET /server_settings
: Addedexternal_authentication_methods
structure, used to display login buttons nicely in the mobile apps.- Added
first_message_id
field to Stream objects. This is helpful for determining whether the stream has any messages older than a window cached in a client. - Added
is_web_public
field to Stream objects. This field is intended to support web-public streams. - Added
/export/realm
endpoints for triggering a data export. PATCH /realm
: Addedinvite_to_stream_policy
,create_stream_policy
,digest_emails_enabled
,digest_weekday
,user_group_edit_policy
, andavatar_changes_disabled
organization settings.- Added
fluid_layout_width
,desktop_icon_count_display
, anddemote_inactive_streams
display settings. enable_stream_sounds
was renamed toenable_stream_audible_notifications
.POST /users/me/subscriptions/properties
: Deprecatedin_home_view
, replacing it with the more readableis_muted
(with the opposite meaning).- Custom profile fields: Added
EXTERNAL_ACCOUNT
field type.
Changes in Zulip 2.0
PATCH /users/me/subscriptions/muted_topics
: Added support for using stream IDs to specify the stream in which to mute/unmute a topic.POST /messages
: Added support for using user IDs and stream IDs for specifying the recipients of a message.POST /messages
,POST /messages/{message_id}
: Added support for encoding topics using thetopic
parameter name. The previoussubject
parameter name was deprecated but is still supported for backwards-compatibility.POST /set-typing-status
: Added support for specifying the recipients with user IDs, deprecating the original API of specifying them using email addresses.
Changes not yet stabilized
POST /register
: Addedslim_presence
parameter. Changes the format of presence events, but is still being changed and should not be used by clients.