Replace messages
Rewrites one of this app's messages: PUT /v1/provider/slack/messages.
PUT /v1/provider/slack/messages
| Address | https://api.hanzo.ai/v1/provider/slack/messages |
| Method | PUT |
| Operation | put_provider_slack_messages |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Rewrites one of this app's messages: PUT /v1/provider/slack/messages. Slack refuses a message the token did not post, and that refusal is reported as it arrives.
Request
3 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
channel | body | string | — | Channel is a Slack channel ID, name (#hanzo-gtm), or channel mention. |
text | body | string | — | Text is the replacement, up to 40000 characters. |
ts | body | string | — | TS is the exact timestamp of the message to rewrite. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | provider.slackUpdateMessageOut | ok |
default | problem-details | refused |
200 body — 2 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
channel | body | string | — | Channel is the resolved channel ID the message sits in. |
ts | body | string | — | TS is the rewritten message's exact Slack timestamp, unchanged by an edit. |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider slack messages replaceimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.putProviderSlackMessages({ channel: "<channel>", text: "<text>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProviderApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProviderApi(client).put_provider_slack_messages(channel="<channel>", text="<text>")cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.PutProviderSlackMessages(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, provider_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = provider_api::put_provider_slack_messages(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProviderApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new ProviderApi(client).putProviderSlackMessages();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X PUT https://api.hanzo.ai/v1/provider/slack/messages \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"channel": "<channel>",
"text": "<text>"
}'MCP declares no tool for provider — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?