Retrieves a specific form_field_option by id
curl --request GET \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "f9ebaf2f-c9db-4a8d-987b-04e660aa74fa",
"type": "form_field_options",
"attributes": {
"form_field_id": "8f0713d5-d9fb-4180-9a92-ae86e73abb27",
"value": "Voluptatibus distinctio rerum aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-01T09:21:32.059-08:00",
"created_at": "2025-12-01T09:21:32.059-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "8f0713d5-d9fb-4180-9a92-ae86e73abb27",
"type": "form_fields"
}
}
}
}
}Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "f9ebaf2f-c9db-4a8d-987b-04e660aa74fa",
"type": "form_field_options",
"attributes": {
"form_field_id": "8f0713d5-d9fb-4180-9a92-ae86e73abb27",
"value": "Voluptatibus distinctio rerum aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-01T09:21:32.059-08:00",
"created_at": "2025-12-01T09:21:32.059-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "8f0713d5-d9fb-4180-9a92-ae86e73abb27",
"type": "form_fields"
}
}
}
}
}