GET
/
v1
/
form_field_options
/
{id}
Retrieves FormField Options
curl --request GET \
  --url https://api.rootly.com/v1/form_field_options/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "76afbc6e-4264-44e2-af4f-a2311c715dd7",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "a4fd8f4c-b841-4552-b31b-2b291e2a582e",
      "value": "Voluptate et voluptas incidunt.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-07-11T12:24:56.438-07:00",
      "created_at": "2025-07-11T12:24:56.438-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "a4fd8f4c-b841-4552-b31b-2b291e2a582e",
          "type": "form_fields"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

form_field_option found

The response is of type object.