Skip to main content
PUT
/
v1
/
form_field_options
/
{id}
Update FormField Options
curl --request PUT \
  --url https://api.rootly.com/v1/form_field_options/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "form_field_options",
    "attributes": {
      "value": "<string>",
      "color": "<string>",
      "default": true,
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "5bcfe47f-6d14-4308-ab4f-af43113daac2",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "11ef08fb-00b0-4328-a5b1-d5a268dd0597",
      "value": "Test update option value",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-11-21T14:29:27.529-08:00",
      "created_at": "2025-11-21T14:29:26.774-08:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "11ef08fb-00b0-4328-a5b1-d5a268dd0597",
          "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

Body

application/vnd.api+json
data
object
required

Response

form_field_option updated

data
object
required