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": "fb28a106-d8fe-49bd-9a47-c3ea5df6c626",
"type": "form_field_placements",
"attributes": {
"form_field_id": "e88697ec-e613-4a14-af1c-042f0798f77f",
"form_set_id": "9ceb3116-9228-4690-b0e5-2b94f4967843",
"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": "fb28a106-d8fe-49bd-9a47-c3ea5df6c626",
"type": "form_field_placements",
"attributes": {
"form_field_id": "e88697ec-e613-4a14-af1c-042f0798f77f",
"form_set_id": "9ceb3116-9228-4690-b0e5-2b94f4967843",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": true
}
}
}