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": "9682767d-4e98-4d89-ad0e-1d805f28dfc6",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-17T11:02:03.142-07:00",
"created_at": "2025-07-17T11:02:03.142-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "9682767d-4e98-4d89-ad0e-1d805f28dfc6",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-17T11:02:03.142-07:00",
"created_at": "2025-07-17T11:02:03.142-07:00"
}
}
}