Update annotation
Update annotation
Parameters #
| Property | Type | Location | Description |
|---|---|---|---|
id | stringRequired | path | Unique ID of the annotation |
Body #
application/json| Property | Type | Description |
|---|---|---|
datasets | string[] | array<string> of dataset names for which the annotation appears on charts |
description | string | Explanation of the event the annotation marks on the charts |
endTime | string<date-time> | End time of the annotation |
time | string<date-time> | Time the annotation marks on the charts. If you don't include this field, Axiom assigns the time of the API request to the annotation. |
title | string | Summary of the annotation that appears on the charts |
type | string | Type of the event marked by the annotation. Use only alphanumeric characters or hyphens. For example, "production-deployment". |
url | string | URL relevant for the event marked by the annotation. For example, link to GitHub pull request. |
Request #
curl -X PUT 'https://api.axiom.co/v2/annotations/ID' \
-H 'Authorization: Bearer API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"datasets":["string"],"description":"string","endTime":"2026-01-01T00:00:00Z","time":"2026-01-01T00:00:00Z","title":"string","type":"string","url":"string"}'Try itRun this request against your Axiom organization
Credentials stay in this browser tab and are only sent to Axiom when you run the request.
Response #
200Annotation| Property | Type | Description |
|---|---|---|
datasets | string[]Required | array<string> of dataset names for which the annotation appears on charts |
description | string | Explanation of the event the annotation marks on the charts |
endTime | string<date-time> | End time of the annotation |
id | stringRequired | |
time | string<date-time>Required | Time the annotation marks on the charts. If you don't include this field, Axiom assigns the time of the API request to the annotation. |
title | string | Summary of the annotation that appears on the charts |
type | stringRequired | Type of the event marked by the annotation. Use only alphanumeric characters or hyphens. For example, "production-deployment". |
url | string | URL relevant for the event marked by the annotation. For example, link to GitHub pull request. |