Update a specific form_field_placement by 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",
"non_editable": true
}
}
}
'{
"data": {
"id": "637aa071-d230-49ca-b13a-7c7247f9a752",
"type": "form_field_placements",
"attributes": {
"form_field_id": "b17f94f8-11bd-4c2f-b7d5-9781330ad6c6",
"form_set_id": "3e11b3a0-8226-432e-b004-af61128ed08d",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": true
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_field_placement updated with non_editable
Show child attributes
Was this page helpful?
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": "637aa071-d230-49ca-b13a-7c7247f9a752",
"type": "form_field_placements",
"attributes": {
"form_field_id": "b17f94f8-11bd-4c2f-b7d5-9781330ad6c6",
"form_set_id": "3e11b3a0-8226-432e-b004-af61128ed08d",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": true
}
}
}