2017-12-30 01:19:43 +01:00
|
|
|
# Get subscribed streams
|
|
|
|
|
|
|
|
Get all streams that the user is subscribed to.
|
|
|
|
|
|
|
|
`GET {{ api_url }}/v1/users/me/subscriptions`
|
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
2017-12-30 01:19:43 +01:00
|
|
|
|
2019-07-19 07:02:10 +02:00
|
|
|
{generate_code_example(python)|/users/me/subscriptions:get|example}
|
2017-12-30 01:19:43 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|js}
|
2017-12-30 01:19:43 +01:00
|
|
|
|
|
|
|
More examples and documentation can be found [here](https://github.com/zulip/zulip-js).
|
|
|
|
|
|
|
|
```js
|
|
|
|
const zulip = require('zulip-js');
|
|
|
|
|
2019-01-07 14:27:58 +01:00
|
|
|
// Pass the path to your zuliprc file here.
|
2017-12-30 01:19:43 +01:00
|
|
|
const config = {
|
2019-01-07 14:27:58 +01:00
|
|
|
zuliprc: 'zuliprc',
|
2017-12-30 01:19:43 +01:00
|
|
|
};
|
|
|
|
|
2018-01-13 22:59:47 +01:00
|
|
|
zulip(config).then((client) => {
|
|
|
|
// Get all streams that the user is subscribed to
|
|
|
|
client.streams.subscriptions.retrieve().then(console.log);
|
2017-12-30 01:19:43 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|curl}
|
|
|
|
|
2019-05-16 22:38:53 +02:00
|
|
|
``` curl
|
2019-04-17 21:08:35 +02:00
|
|
|
curl -X GET {{ api_url }}/v1/users/me/subscriptions \
|
2018-09-17 16:27:32 +02:00
|
|
|
-u BOT_EMAIL_ADDRESS:BOT_API_KEY
|
|
|
|
```
|
2017-12-30 01:19:43 +01:00
|
|
|
|
2019-08-08 21:58:38 +02:00
|
|
|
You may pass the `include_subscribers` query parameter as follows:
|
|
|
|
|
|
|
|
``` curl
|
|
|
|
curl -X GET {{ api_url }}/v1/users/me/subscriptions?include_subscribers=true \
|
|
|
|
-u BOT_EMAIL_ADDRESS:BOT_API_KEY
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2017-12-30 01:19:43 +01:00
|
|
|
|
2018-01-20 22:03:05 +01:00
|
|
|
## Arguments
|
|
|
|
|
2019-08-08 21:58:38 +02:00
|
|
|
{generate_api_arguments_table|zulip.yaml|/users/me/subscriptions:get}
|
2018-01-20 22:03:05 +01:00
|
|
|
|
2017-12-30 01:19:43 +01:00
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `subscriptions`: A list of dictionaries where each dictionary contains
|
|
|
|
information about one of the subscribed streams.
|
|
|
|
* `stream_id`: The unique ID of a stream.
|
|
|
|
* `name`: The name of a stream.
|
|
|
|
* `description`: A short description of a stream.
|
2018-06-08 22:05:07 +02:00
|
|
|
* `invite-only`: Specifies whether a stream is private or not.
|
|
|
|
Only people who have been invited can access a private stream.
|
2017-12-30 01:19:43 +01:00
|
|
|
* `subscribers`: A list of email addresses of users who are also subscribed
|
2019-08-08 21:58:38 +02:00
|
|
|
to a given stream. Included only if `include_subscribers` is `true`.
|
2017-12-30 01:19:43 +01:00
|
|
|
* `desktop_notifications`: A boolean specifiying whether desktop notifications
|
|
|
|
are enabled for the given stream.
|
|
|
|
* `push_notifications`: A boolean specifiying whether push notifications
|
|
|
|
are enabled for the given stream.
|
|
|
|
* `audible_notifications`: A boolean specifiying whether audible notifications
|
|
|
|
are enabled for the given stream.
|
|
|
|
* `pin_to_top`: A boolean specifying whether the given stream has been pinned
|
|
|
|
to the top.
|
|
|
|
* `email_address`: Email address of the given stream.
|
|
|
|
* `in_home_view`: Whether the given stream is muted or not. Muted streams do
|
|
|
|
not count towards your total unread count and thus, do not show up in
|
|
|
|
`All messages` view (previously known as `Home` view).
|
|
|
|
* `color`: Stream color.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
2019-07-19 07:02:10 +02:00
|
|
|
{generate_code_example|/users/me/subscriptions:get|fixture(200)}
|