2019-06-23 14:38:28 +02:00
|
|
|
# Update stream
|
|
|
|
|
|
|
|
Configure the stream with the ID `stream_id`. This endpoint supports
|
|
|
|
an organization administrator editing any property of a stream,
|
|
|
|
including:
|
|
|
|
|
|
|
|
* Stream [name](/help/rename-a-stream) and [description](/help/change-the-stream-description)
|
|
|
|
* Stream [permissions](/help/stream-permissions), including
|
|
|
|
[privacy](/help/change-the-privacy-of-a-stream) and [who can
|
2020-02-04 21:50:55 +01:00
|
|
|
send](/help/stream-sending-policy).
|
2019-06-23 14:38:28 +02:00
|
|
|
|
|
|
|
`PATCH {{ api_url }}/v1/streams/{stream_id}`
|
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
|
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
|
|
|
|
|
|
|
{generate_code_example(python)|/streams/{stream_id}:patch|example}
|
|
|
|
|
|
|
|
{tab|curl}
|
|
|
|
|
2019-10-18 08:47:27 +02:00
|
|
|
{generate_code_example(curl, include=["new_name", "description", "is_private"])|/streams/{stream_id}:patch|example}
|
2019-06-23 14:38:28 +02:00
|
|
|
|
|
|
|
{end_tabs}
|
|
|
|
|
|
|
|
## Arguments
|
|
|
|
|
|
|
|
{generate_api_arguments_table|zulip.yaml|/streams/{stream_id}:patch}
|
|
|
|
|
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `stream_id`: The ID of the stream to be updated.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
|
|
|
{generate_code_example|/streams/{stream_id}:patch|fixture(200)}
|
|
|
|
|
|
|
|
An example JSON response for when the supplied stream does not exist:
|
|
|
|
|
|
|
|
{generate_code_example|/streams/{stream_id}:patch|fixture(400)}
|