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": "f97ff1ac-edc6-4007-b967-1ad37ef8fcf7",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "da6622f4-94b4-49fc-a999-a710f81b230a",
      "value": "At in beatae veniam.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-09-10T23:00:04.444-07:00",
      "created_at": "2025-09-10T23:00:04.444-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "da6622f4-94b4-49fc-a999-a710f81b230a",
          "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

form_field_option found

The response is of type object.