Create comments
Posts a comment on a Linear issue with the caller's own key, so it carries their name.
POST /v1/provider/linear/comments
| Address | https://api.hanzo.ai/v1/provider/linear/comments |
| Method | POST |
| Operation | post_provider_linear_comments |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Posts a comment on a Linear issue with the caller's own key, so it carries their name. This is the op an agent is offered when it should answer in Linear rather than in chat.
Request
2 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
body | body | string | — | Body is the comment, Markdown. |
issue | body | string | — | Issue is the issue's identifier (ENG-123) or its id. |
Response
| Status | Body | Meaning |
|---|---|---|
201 | provider.linearCommentOut | created |
default | problem-details | refused |
201 body — 2 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
id | body | string | — | ID is the comment's id in Linear. |
url | body | string | — | URL is the comment's address in Linear. |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider linear commentsimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postProviderLinearComments({ body: "<body>", issue: "<issue>" });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).post_provider_linear_comments(body="<body>", issue="<issue>")cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.PostProviderLinearComments(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::post_provider_linear_comments(&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).postProviderLinearComments();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 POST https://api.hanzo.ai/v1/provider/linear/comments \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"body": "<body>",
"issue": "<issue>"
}'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?