PUT
/
v1
/
form_field_placements
/
{id}
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"
    }
  }
}'
{
  "data": {
    "id": "933b3911-1a2c-47f7-a495-76d13f526ead",
    "type": "form_field_placements",
    "attributes": {
      "form_field_id": "a00532df-1e49-4a5d-8e35-b53bbd04a06c",
      "form_set_id": "ffb93fb9-60eb-4a33-ba15-0367650e8d6a",
      "form": "web_new_incident_form",
      "position": 5,
      "required": false,
      "placement_operator": "and",
      "required_operator": "and"
    }
  }
}

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_placement updated
data
object
required