Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
form_field_option updated
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": "dab3d65e-fe5f-414e-bd60-ef78378df8a2",
"type": "form_field_options",
"attributes": {
"form_field_id": "523fbaf3-38fb-456c-aaee-f1c72c30812f",
"value": "Test update option value",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-11-03T07:20:31.939-08:00",
"created_at": "2025-11-03T07:20:31.189-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "523fbaf3-38fb-456c-aaee-f1c72c30812f",
"type": "form_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_field_option updated
Show child attributes
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": "dab3d65e-fe5f-414e-bd60-ef78378df8a2",
"type": "form_field_options",
"attributes": {
"form_field_id": "523fbaf3-38fb-456c-aaee-f1c72c30812f",
"value": "Test update option value",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-11-03T07:20:31.939-08:00",
"created_at": "2025-11-03T07:20:31.189-08:00"
},
"relationships": {
"form_field": {
"data": {
"id": "523fbaf3-38fb-456c-aaee-f1c72c30812f",
"type": "form_fields"
}
}
}
}
}