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": "74158c2d-14f9-4190-a261-a56274488667",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "5c370075-f584-4151-8210-5e0369f91f8a",
      "value": "Sed vero repellat labore.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-08-21T17:47:56.355-07:00",
      "created_at": "2025-08-21T17:47:56.355-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "5c370075-f584-4151-8210-5e0369f91f8a",
          "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.