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": "bf5654fc-100d-4af8-978d-951bd351cd30",
"type": "form_field_placements",
"attributes": {
"form_field_id": "9a5b0c93-3652-49cf-b1b0-446fb8fedb63",
"form_set_id": "ca145c12-968d-4a58-8b55-03a6225acace",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}
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": "bf5654fc-100d-4af8-978d-951bd351cd30",
"type": "form_field_placements",
"attributes": {
"form_field_id": "9a5b0c93-3652-49cf-b1b0-446fb8fedb63",
"form_set_id": "ca145c12-968d-4a58-8b55-03a6225acace",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}