Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
form_field_option deleted
Delete a specific form_field_option by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ae914359-f117-4106-b727-b5ce60711b21",
"type": "form_field_options",
"attributes": {
"form_field_id": "d772cc7f-c458-4907-b276-5738ceb8b5f6",
"value": "In labore recusandae amet.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-02T20:45:02.423-07:00",
"created_at": "2025-10-02T20:45:01.395-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "d772cc7f-c458-4907-b276-5738ceb8b5f6",
"type": "form_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_option deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ae914359-f117-4106-b727-b5ce60711b21",
"type": "form_field_options",
"attributes": {
"form_field_id": "d772cc7f-c458-4907-b276-5738ceb8b5f6",
"value": "In labore recusandae amet.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-02T20:45:02.423-07:00",
"created_at": "2025-10-02T20:45:01.395-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "d772cc7f-c458-4907-b276-5738ceb8b5f6",
"type": "form_fields"
}
}
}
}
}