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": "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"
        }
      }
    }
  }
}

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.