2017-12-29 23:58:37 +01:00
|
|
|
# Get stream ID
|
|
|
|
|
2020-04-28 20:00:46 +02:00
|
|
|
{generate_api_description(/get_stream_id:get)}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-06-18 19:20:55 +02:00
|
|
|
{generate_code_example(python)|/get_stream_id:get|example}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|js}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-01-13 22:57:05 +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.
|
2018-01-13 22:57:05 +01:00
|
|
|
const config = {
|
2019-01-07 14:27:58 +01:00
|
|
|
zuliprc: 'zuliprc',
|
2018-01-13 22:57:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
zulip(config).then((client) => {
|
|
|
|
// Get the ID of a given stream
|
|
|
|
client.streams.getStreamId('Denmark').then(console.log);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|curl}
|
|
|
|
|
2019-10-11 14:27:25 +02:00
|
|
|
{generate_code_example(curl)|/get_stream_id:get|example}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-01-20 22:03:05 +01:00
|
|
|
## Arguments
|
|
|
|
|
|
|
|
**Note**: The following arguments are all URL query parameters.
|
|
|
|
|
2018-06-18 19:20:55 +02:00
|
|
|
{generate_api_arguments_table|zulip.yaml|/get_stream_id:get}
|
2018-01-20 22:03:05 +01:00
|
|
|
|
2017-12-29 23:58:37 +01:00
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `stream_id`: The ID of the given stream.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
2018-06-18 19:20:55 +02:00
|
|
|
{generate_code_example|/get_stream_id:get|fixture(200)}
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-06-01 18:52:53 +02:00
|
|
|
An example JSON response for when the supplied stream does not exist:
|
2017-12-29 23:58:37 +01:00
|
|
|
|
2018-06-18 19:20:55 +02:00
|
|
|
{generate_code_example|/get_stream_id:get|fixture(400)}
|