Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Response
form_set deleted
Delete a specific form_set by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "0f0b5a6a-f1ba-4b81-b595-71a779cdfee7",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-09-23T14:14:07.768-07:00",
"created_at": "2025-09-23T14:14:05.453-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
form_set deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "0f0b5a6a-f1ba-4b81-b595-71a779cdfee7",
"type": "form_sets",
"attributes": {
"name": "Test",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-09-23T14:14:07.768-07:00",
"created_at": "2025-09-23T14:14:05.453-07:00"
}
}
}