PUT
/
v1
/
form_field_options
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/form_field_options/%7Bid%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "2629b48c-c132-4120-9f10-ae7cc71d319a",
    "type": "form_field_options",
    "attributes": {
      "form_field_id": "9231a2b9-3344-4d73-aa72-e5394640c3a1",
      "value": "Test update option value",
      "color": "#FBE4A0",
      "default": false,
      "position": 1,
      "updated_at": "2025-03-11T19:09:47.053-07:00",
      "created_at": "2025-03-11T19:09:45.739-07:00"
    },
    "relationships": {
      "form_field": {
        "data": {
          "id": "9231a2b9-3344-4d73-aa72-e5394640c3a1",
          "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

200
application/vnd.api+json
form_field_option updated
data
object
required