Annotation endpoints
API token endpoints
Dataset endpoints
Monitor endpoints
Notifier endpoints
Organization endpoints
Role-based access control endpoints
Starred queries endpoints
User endpoints
Annotation endpoints
Retrieve annotation
Retrieve annotation
Get annotation by ID
GET
/
annotations
/
{id}
curl --request GET \
--url https://api.axiom.co/v2/annotations/{id} \
--header 'Authorization: Bearer <token>'
{
"datasets": [
"my-dataset"
],
"description": "Deploy new feature to the sales form",
"endTime": "2024-02-06T11:39:28.382Z",
"id": "ann_123",
"time": "2024-02-06T10:39:28.382Z",
"title": "Production deployment",
"type": "deploy",
"url": "https://example.com"
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Unique ID of the annotation
Response
200 - application/json
Annotation
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.axiom.co/v2/annotations/{id} \
--header 'Authorization: Bearer <token>'
{
"datasets": [
"my-dataset"
],
"description": "Deploy new feature to the sales form",
"endTime": "2024-02-06T11:39:28.382Z",
"id": "ann_123",
"time": "2024-02-06T10:39:28.382Z",
"title": "Production deployment",
"type": "deploy",
"url": "https://example.com"
}