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": "fba688ff-b42f-4fa5-b5cd-54bf413c692e",
    "type": "form_field_placements",
    "attributes": {
      "form_field_id": "bb02c793-2a76-4769-87ba-98a536987919",
      "form_set_id": "8d0e0c94-7a74-4642-b320-31000e58ab1e",
      "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