curl --request PUT \
--url https://api.pelanor.io/v1/custom-metrics/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"metric_data": {
"Dimensional": {
"data": [
{
"property_value": "<string>",
"timeseries_point": [
{
"timestamp": "<string>",
"value": 123
}
]
}
],
"property_kind": {
"type": "Region"
}
}
},
"metric_name": "<string>"
}'