GET
/
v1
/
form_field_options
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/form_field_options/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8ca95325-5a6f-4ed0-aba0-1f19b9d9cb8c",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "a0801780-4c8c-4335-96dc-dc026dd5c787",
      "value": "Illo ipsam excepturi suscipit.",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-05-08T00:18:11.529-07:00",
      "created_at": "2025-05-08T00:18:11.529-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "a0801780-4c8c-4335-96dc-dc026dd5c787",
          "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.