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": "a0e214f5-6f95-4615-a3d2-e58ee2d0ba41",
"type": "form_field_options",
"attributes": {
"form_field_id": "d583037d-c08c-41ed-b71c-94b9341745c1",
"value": "Quisquam sit ipsa error.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-08-01T13:25:33.627-07:00",
"created_at": "2025-08-01T13:25:33.627-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "d583037d-c08c-41ed-b71c-94b9341745c1",
"type": "form_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_option found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a0e214f5-6f95-4615-a3d2-e58ee2d0ba41",
"type": "form_field_options",
"attributes": {
"form_field_id": "d583037d-c08c-41ed-b71c-94b9341745c1",
"value": "Quisquam sit ipsa error.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-08-01T13:25:33.627-07:00",
"created_at": "2025-08-01T13:25:33.627-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "d583037d-c08c-41ed-b71c-94b9341745c1",
"type": "form_fields"
}
}
}
}
}