List Events

List events for a specific issue

Usage #

// Import the typed helper
import { listEvents } from "@hotglue/sdk/sentry";
const result = await client.execute({
...listEvents({
issue_id: string,
full: bool,
cursor: string,
}),
userId: "user_123",
});
// result is typed as ListEventsOutput
const result = await client.execute({
integration: "sentry",
tool: "list_events",
userId: "user_123",
input: {
issue_id: string,
full: bool,
cursor: string,
},
});
// The agent will automatically use this tool when needed
const agent = new Agent({
tools: () => hotglueTools({
integrations: ["sentry"],
userId: "user_123",
}),
});
await agent.generate("run the List Events tool");

Input Schema #

issue_id string required

Issue ID

full bool

Return full event data

cursor string

Pagination cursor

This tool calls: #

GET https://sentry.io/api/0/issues/{issue_id}/events/