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": "dacc7a8b-086b-4c35-b656-3990581ab63e",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-11-06T13:22:44.351-08:00",
"created_at": "2025-11-06T13:22:44.351-08: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": "dacc7a8b-086b-4c35-b656-3990581ab63e",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-11-06T13:22:44.351-08:00",
"created_at": "2025-11-06T13:22:44.351-08:00"
}
}
}