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": "6e3e21f1-af0a-49e6-a6ab-557b9e4d73b8",
"type": "form_field_options",
"attributes": {
"form_field_id": "3cbc99f4-6164-4991-9dda-59b2175ebc28",
"value": "Praesentium architecto qui fugiat.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-08T19:32:17.650-07:00",
"created_at": "2025-10-08T19:32:17.650-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "3cbc99f4-6164-4991-9dda-59b2175ebc28",
"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": "6e3e21f1-af0a-49e6-a6ab-557b9e4d73b8",
"type": "form_field_options",
"attributes": {
"form_field_id": "3cbc99f4-6164-4991-9dda-59b2175ebc28",
"value": "Praesentium architecto qui fugiat.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-10-08T19:32:17.650-07:00",
"created_at": "2025-10-08T19:32:17.650-07:00"
},
"relationships": {
"form_field": {
"data": {
"id": "3cbc99f4-6164-4991-9dda-59b2175ebc28",
"type": "form_fields"
}
}
}
}
}