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_placement updated with non_editable
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": "4ca30ed0-4925-4d14-8ace-1e8565c998aa",
"type": "form_field_placements",
"attributes": {
"form_field_id": "165d5e65-ced3-4574-b8d0-2b499307c027",
"form_set_id": "9f2a257a-7b42-4218-845c-63c7cf871dcb",
"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": "4ca30ed0-4925-4d14-8ace-1e8565c998aa",
"type": "form_field_placements",
"attributes": {
"form_field_id": "165d5e65-ced3-4574-b8d0-2b499307c027",
"form_set_id": "9f2a257a-7b42-4218-845c-63c7cf871dcb",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": true
}
}
}