API Documentation
Components
Component Groups
Incident Updates
Incident Templates
Metric Points
Get Metric Point
GET
/
metrics
/
{metric}
/
points
/
{metricPoint}
Copy
Ask AI
curl --request GET \
--url http://localhost/api/metrics/{metric}/points/{metricPoint}
Copy
Ask AI
{
"data": {
"id": "<string>",
"type": "metricPoints",
"attributes": {
"id": 123,
"metric_id": 123,
"calculated_value": "<string>",
"value": 123,
"counter": 123,
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
},
"relationships": {
"metric": {
"data": {
"type": "metrics",
"id": "<string>"
}
}
}
}
}
Query Parameters
Available includes are metric
, metricCount
, metricExists
. You can include multiple options by separating them with a comma.
Response
200
application/json
MetricPoint
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url http://localhost/api/metrics/{metric}/points/{metricPoint}
Copy
Ask AI
{
"data": {
"id": "<string>",
"type": "metricPoints",
"attributes": {
"id": 123,
"metric_id": 123,
"calculated_value": "<string>",
"value": 123,
"counter": 123,
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
},
"relationships": {
"metric": {
"data": {
"type": "metrics",
"id": "<string>"
}
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.