Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
form_field_option found
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": "f9da5bf0-2e1e-443d-80af-d0e417bccbea",
"type": "form_field_options",
"attributes": {
"form_field_id": "e1d1c875-da66-4501-a821-c62fb4fa71d6",
"value": "Soluta ut repudiandae aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-09-17T17:46:09.721-07:00",
"created_at": "2025-09-17T17:46:09.721-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "e1d1c875-da66-4501-a821-c62fb4fa71d6",
"type": "form_fields"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_option found
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": "f9da5bf0-2e1e-443d-80af-d0e417bccbea",
"type": "form_field_options",
"attributes": {
"form_field_id": "e1d1c875-da66-4501-a821-c62fb4fa71d6",
"value": "Soluta ut repudiandae aut.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-09-17T17:46:09.721-07:00",
"created_at": "2025-09-17T17:46:09.721-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "e1d1c875-da66-4501-a821-c62fb4fa71d6",
"type": "form_fields"
}
}
}
}
}