Skip to main content
PUT
/
v1
/
form_field_placements
/
{id}
Update a Form Field Placement
curl --request PUT \
  --url https://api.rootly.com/v1/form_field_placements/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "form_field_placements",
    "attributes": {
      "form_set_id": "<string>",
      "form": "<string>",
      "position": 123,
      "required": true,
      "required_operator": "and",
      "placement_operator": "and",
      "non_editable": true
    }
  }
}'
{
  "data": {
    "id": "0c8dec43-28e4-43df-9c86-1177ed1fcb31",
    "type": "form_field_placements",
    "attributes": {
      "form_field_id": "54b61d69-b140-4d55-8cd8-896cb5ad221b",
      "form_set_id": "efa4c4ad-0dde-49d0-965d-01a3aff437bd",
      "form": "web_new_incident_form",
      "position": 1,
      "required": false,
      "placement_operator": "and",
      "required_operator": "and",
      "non_editable": true
    }
  }
}

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_placement updated with non_editable

data
object
required