Skip to content
BleemeoBleemeo

Retrieve a recording rule

GET
/v1/recordingrule/{id}/
curl --request GET \
--url https://example.com/v1/recordingrule/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/ \
--header 'Authorization: Bearer <token>'

Return a single recording rule by its ID.

id
required
string format: uuid

A UUID string identifying this recording rule.

Media typeapplication/json

A ModelSerializer that takes an additional fields argument that controls which fields should be displayed.

object
id
required
string format: uuid
account
required
string format: uuid
name
required
string
<= 100 characters
query
required
string
<= 1000 characters
agent_type
string format: uuid
nullable
metric_resolution_second
required
integer
default_threshold_high_critical
Threshold high critical
number format: double
nullable
default_threshold_high_warning
Threshold high warning
number format: double
nullable
default_threshold_low_critical
Threshold low critical
number format: double
nullable
default_threshold_low_warning
Threshold low warning
number format: double
nullable
active
boolean
created_at
required
string format: date-time
deactivated_at
string format: date-time
nullable
Examplegenerated
{
"name": "example",
"query": "example",
"agent_type": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"default_threshold_high_critical": 1,
"default_threshold_high_warning": 1,
"default_threshold_low_critical": 1,
"default_threshold_low_warning": 1,
"active": true,
"deactivated_at": "2026-04-15T12:00:00Z"
}