OpenapiO11y
Returns a page of one review queue's items, newest first, optionally filtered…
Returns a page of one review queue's items, newest first, optionally filtered to PENDING or COMPLETED.
GET /v1/o11y/reviews/{id}/items
| Address | https://api.hanzo.ai/v1/o11y/reviews/{id}/items |
| Method | GET |
| Operation | get_o11y_reviews_by_id_items |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns a page of one review queue's items, newest first, optionally filtered to PENDING or COMPLETED. A queue id belonging to another org is a 404, never a cross-tenant list.
Request
4 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the annotation queue whose items to list, from the path. |
status | query | string | — | Status filters to PENDING or COMPLETED items. |
page | query | integer | — | Page is the 1-based page to read. |
limit | query | integer | — | Limit is how many rows to return. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.annItemList | ok |
200 body — 18 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.annItemView[] | — | Data is the page of items. |
data[].assignee | body | string | — | Assignee is the reviewer it is for, omitted when unassigned. |
data[].completedAt | body | string | — | CompletedAt is when it was reviewed, omitted while pending. |
data[].createdAt | body | string | — | CreatedAt is when it was enqueued, RFC3339 in UTC. |
data[].id | body | string | — | ID is the item's id. |
data[].objectId | body | string | — | ObjectID is the referenced object's id. |
data[].objectType | body | string | — | ObjectType is what it references: TRACE, OBSERVATION or SESSION. |
data[].observationId | body | string | — | ObservationID echoes objectId when objectType is OBSERVATION. |
data[].queueId | body | string | — | QueueID is the queue it belongs to. |
data[].sessionId | body | string | — | SessionID echoes objectId when objectType is SESSION. |
data[].status | body | string | — | Status is PENDING or COMPLETED. |
data[].traceId | body | string | — | TraceID echoes objectId when objectType is TRACE. |
data[].updatedAt | body | string | — | UpdatedAt is when it last changed, RFC3339 in UTC. |
meta | body | o11y.listMeta | — | |
meta.limit | body | integer | — | Limit is how many rows one page holds. |
meta.page | body | integer | — | Page is the 1-based page this response is. |
meta.totalItems | body | integer | — | TotalItems is how many rows match in total. |
meta.totalPages | body | integer | — | TotalPages is ceil(totalItems/limit), at least 1. |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y reviews items list <id>import { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getO11yReviewsByIdItems({ id: 'id' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import O11yApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = O11yApi(client).get_o11y_reviews_by_id_items(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.GetO11yReviewsByIdItems(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, o11y_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = o11y_api::get_o11y_reviews_by_id_items(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.O11yApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new O11yApi(client).getO11yReviewsByIdItems();curl https://api.hanzo.ai/v1/o11y/reviews/<id>/items \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches o11y through the o11y tool, which names its 340 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_o11y_alert_last"
}
}
}'How is this guide?