Delete a specific form_field_placement by id
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_placements/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "69f58b26-cb81-44ef-90ff-638fadb113a4",
"type": "form_field_placements",
"attributes": {
"form_field_id": "f1f28c5f-eb47-4148-8c56-6aa86a7da56b",
"form_set_id": "5cbcb9f7-5f54-4b46-93cf-df72ced8e1b4",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": false
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_placement deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/form_field_placements/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "69f58b26-cb81-44ef-90ff-638fadb113a4",
"type": "form_field_placements",
"attributes": {
"form_field_id": "f1f28c5f-eb47-4148-8c56-6aa86a7da56b",
"form_set_id": "5cbcb9f7-5f54-4b46-93cf-df72ced8e1b4",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": false
}
}
}