Update a specific form_field_option by id
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": "ac39c8a0-7ff6-4a42-8b6f-a307c4e03575",
"type": "form_field_options",
"attributes": {
"form_field_id": "7854261c-a8b0-4c30-b42e-561406be3887",
"value": "Test update option value",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-13T18:48:37.339-08:00",
"created_at": "2025-12-13T18:48:36.558-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "7854261c-a8b0-4c30-b42e-561406be3887",
"type": "form_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_field_options form_field_option updated
Show child attributes
Unique ID of the form field option
form_field_options Show child attributes
The value of the form field option
The hex color of the form field option
The position of the form field option
Date of creation
Date of last update
Unique ID of the form field option
The ID of the parent custom field
Was this page helpful?
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": "ac39c8a0-7ff6-4a42-8b6f-a307c4e03575",
"type": "form_field_options",
"attributes": {
"form_field_id": "7854261c-a8b0-4c30-b42e-561406be3887",
"value": "Test update option value",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-13T18:48:37.339-08:00",
"created_at": "2025-12-13T18:48:36.558-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "7854261c-a8b0-4c30-b42e-561406be3887",
"type": "form_fields"
}
}
}
}
}