PATCH /scheduled_messages/{scheduled_message_id}
Edit an existing scheduled message.
Changes: New in Zulip 7.0 (feature level 184).
Servers
- https://{subdomain}.zulipchat.com/api/v1
- {server}/api/v1
- https://chat.zulip.org/api/v1
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
scheduled_message_id |
Integer | Yes |
The ID of the scheduled message to update. This is different from the unique ID that the message would have after being sent. |
Request headers
| Name | Type | Required | Description |
|---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/x-www-form-urlencoded" |
Request body fields
| Name | Type | Required | Description |
|---|---|---|---|
to |
No |
The scheduled message's tentative target audience. For channel messages, the integer ID of the channel. For direct messages, a list containing integer user IDs. Required when updating the |
|
topic |
String | No |
The updated topic of the scheduled message. Required when updating the Clients should use the Note: When When topics are required, this parameter can't
be Changes: Before Zulip 10.0 (feature level 370), Before Zulip 10.0 (feature level 334), empty string was not a valid topic name for channel messages. |
type |
String | No |
The type of scheduled message to be sent. When updating the type of the scheduled message, the Note that, while Changes: In Zulip 9.0 (feature level 248), Valid values:
|
content |
String | No |
The updated content of the scheduled message. Clients should use the |
scheduled_delivery_timestamp |
Integer | No |
The UNIX timestamp for when the message will be sent, in UTC seconds. Required when updating a scheduled message that the server
has already tried and failed to send. This state is indicated
with |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.