Retrieves a specific pulse by id
curl --request GET \
--url https://api.rootly.com/v1/pulses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1ba72c81-47ca-4a21-a457-a80e77d84762",
"type": "pulses",
"attributes": {
"short_id": null,
"source": "unknown",
"summary": "Tenetur esse qui modi.",
"labels": [],
"refs": [],
"services": [],
"environments": [],
"data": {},
"external_url": null,
"started_at": "2025-07-23T22:47:21.010-07:00",
"ended_at": null,
"created_at": "2025-07-23T22:47:21.010-07:00",
"updated_at": "2025-07-23T22:47:21.011-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
pulse found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/pulses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1ba72c81-47ca-4a21-a457-a80e77d84762",
"type": "pulses",
"attributes": {
"short_id": null,
"source": "unknown",
"summary": "Tenetur esse qui modi.",
"labels": [],
"refs": [],
"services": [],
"environments": [],
"data": {},
"external_url": null,
"started_at": "2025-07-23T22:47:21.010-07:00",
"ended_at": null,
"created_at": "2025-07-23T22:47:21.010-07:00",
"updated_at": "2025-07-23T22:47:21.011-07:00"
}
}
}