POST https://chat.infowatch.com/api/v1/users/me/subscriptions
Subscribe one or more users to one or more channels.
If any of the specified channels do not exist, they are automatically
created. The initial channel settings will be determined
by the optional parameters, like invite_only, detailed below.
Note that the ability to subscribe oneself and/or other users to a specified
channel depends on the channel's privacy settings.
Changes: Before Zulip 8.0 (feature level 208), if a user
specified by the principals parameter was
a deactivated user, or did not exist, then an HTTP status code
of 403 was returned with code: "UNAUTHORIZED_PRINCIPAL" in the
error response. As of this feature level, an HTTP status code of
400 is returned with code: "BAD_REQUEST" in the error response
for these cases.
Usage examples
Python
JavaScript
curl
#!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Create and subscribe to channel "python-test".result=client.add_subscriptions(streams=[{"name":"python-test","description":"Channel for testing Python",},],)# To subscribe other users to a channel, you may pass# the `principals` argument, like so:result=client.add_subscriptions(streams=[{"name":"python-test"},],principals=[user_id],)print(result)
More examples and documentation can be found here.
constzulipInit=require("zulip-js");// Pass the path to your zuliprc file here.constconfig={zuliprc:"zuliprc"};(async()=>{constclient=awaitzulipInit(config);// Subscribe to the channels "Verona" and "Denmark"constmeParams={subscriptions:JSON.stringify([{name:"Verona"},{name:"Denmark"}]),};console.log(awaitclient.users.me.subscriptions.add(meParams));// To subscribe another user to a channel, you may pass in// the `principals` parameter, like so:constuser_id=7;constanotherUserParams={subscriptions:JSON.stringify([{name:"Verona"},{name:"Denmark"}]),principals:JSON.stringify([user_id]),};console.log(awaitclient.users.me.subscriptions.add(anotherUserParams));})();
A list of dictionaries containing the key name and value
specifying the name of the channel to subscribe. If the channel does not
exist a new channel is created. The description of the channel created can
be specified by setting the dictionary key description with an
appropriate value.
subscriptions object details:
name: stringrequired
The name of the channel.
Clients should use the max_stream_name_length returned by the
POST /register endpoint to determine
the maximum channel name length.
description: stringoptional
The description
to use for a new channel being created, in text/markdown format.
Clients should use the max_stream_description_length returned
by the POST /register endpoint to
determine the maximum channel description length.
principals(string)[] | (integer)[]optional
Example: ["ZOE@zulip.com"]
A list of user IDs (preferred) or Zulip API email
addresses of the users to be subscribed to or unsubscribed
from the channels specified in the subscriptions parameter. If
not provided, then the requesting user/bot is subscribed.
Changes: The integer format is new in Zulip 3.0 (feature level 9).
authorization_errors_fatalbooleanoptional
Example: false
A boolean specifying whether authorization errors (such as when the
requesting user is not authorized to access a private channel) should be
considered fatal or not. When true, an authorization error is reported
as such. When set to false, the response will be a 200 and any channels
where the request encountered an authorization error will be listed
in the unauthorized key.
Defaults to true.
announcebooleanoptional
Example: true
If one of the channels specified did not exist previously and is thus created
by this call, this determines whether notification bot
will send an announcement about the new channel's creation.
Defaults to false.
invite_onlybooleanoptional
Example: true
As described above, this endpoint will create a new channel if passed
a channel name that doesn't already exist. This parameters and the ones
that follow are used to request an initial configuration of a created
channel; they are ignored for channels that already exist.
This parameter determines whether any newly created channels will be
private channels.
Defaults to false.
is_web_publicbooleanoptional
Example: true
This parameter determines whether any newly created channels will be
web-public channels.
Note that creating web-public channels requires the
WEB_PUBLIC_STREAMS_ENABLEDserver setting
to be enabled on the Zulip server in question, the organization
to have enabled the enable_spectator_access realm setting, and
the current use to have permission under the organization's
create_web_public_stream_policy realm setting.
Changes: New in Zulip 5.0 (feature level 98).
Defaults to false.
is_default_streambooleanoptional
Example: true
This parameter determines whether any newly created channels will be
added as default channels for new users joining
the organization.
Changes: New in Zulip 8.0 (feature level 200). Previously, default channel status
could only be changed using the dedicated API endpoint.
Defaults to false.
history_public_to_subscribersbooleanoptional
Example: false
Whether the channel's message history should be available to
newly subscribed members, or users can only access messages
they actually received while subscribed to the channel.
Corresponds to the shared history
option in documentation.
stream_post_policyintegeroptional
Example: 2
Policy for which users can post messages to the channel.
Changes: New in Zulip 3.0 (feature level 1), replacing the previous
is_announcement_only boolean.
Defaults to 1.
message_retention_daysstring | integeroptional
Example: "20"
Number of days that messages sent to this channel will be stored
before being automatically deleted by the message retention
policy. Two special string format
values are supported:
"realm_default": Return to the organization-level setting.
"unlimited": Retain messages forever.
Changes: Prior to Zulip 5.0 (feature level 91), retaining
messages forever was encoded using "forever" instead of
"unlimited".
New in Zulip 3.0 (feature level 17).
can_remove_subscribers_groupintegeroptional
Example: 20
ID of the user group whose members are
allowed to unsubscribe others from the channel. Note that a user
who is a member of the specified user group must also have
access to the channel in order to
unsubscribe others.
This setting can currently only be set to user groups that are
system groups, except for the system groups named
"role:internet" and "role:owners".
Changes: Before Zulip 8.0 (feature level 197),
the can_remove_subscribers_group setting
was named can_remove_subscribers_group_id.
New in Zulip 7.0 (feature level 161).
Response
Return values
subscribed: object
A dictionary where the key is the Zulip API email address of the user/bot
and the value is a list of the names of the channels that were subscribed
to as a result of the query.
{email_address}: (string)[]
List of the names of the channels that were subscribed
to as a result of the query.
already_subscribed: object
A dictionary where the key is the Zulip API email address of the user/bot
and the value is a list of the names of the channels that the user/bot is
already subscribed to.
{email_address}: (string)[]
List of the names of the channels that the user is
already subscribed to.
unauthorized: (string)[]
A list of names of channels that the requesting user/bot was not
authorized to subscribe to. Only present if "authorization_errors_fatal": false.
Example response(s)
Changes: As of Zulip 7.0 (feature level 167), if any
parameters sent in the request are not supported by this
endpoint, a successful JSON response will include an
ignored_parameters_unsupported array.