Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Response
form_set found by slug
Retrieves a specific form_set by id
curl --request GET \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a1f3c14f-5a58-4981-bb79-118a93a363f3",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-10-02T20:45:16.464-07:00",
"created_at": "2025-10-02T20:45:16.464-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
form_set found by slug
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a1f3c14f-5a58-4981-bb79-118a93a363f3",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-10-02T20:45:16.464-07:00",
"created_at": "2025-10-02T20:45:16.464-07:00"
}
}
}