get-stream-id
Retrieve the numeric ID of a Zulip stream by providing its name, enabling operations that require the stream ID for channel management and message actions.
Instructions
🔢 STREAM ID LOOKUP: Get the numeric ID of a stream (channel) when you know its name. Use this to get the stream ID needed for other operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
stream_name | Yes | Name of the stream to get ID for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stream_name": {
"description": "Name of the stream to get ID for",
"type": "string"
}
},
"required": [
"stream_name"
],
"type": "object"
}