Retrieves a specific form_field_placement by id
curl --request GET \
--url https://api.rootly.com/v1/form_field_placements/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e3075d95-89e6-47f1-b5b6-4e2bcfe5878e",
"type": "form_field_placements",
"attributes": {
"form_field_id": "f004986e-e374-499b-a8f1-501deb048c43",
"form_set_id": "b28b0185-55a7-4491-ae61-938c57be016e",
"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 found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_field_placements/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e3075d95-89e6-47f1-b5b6-4e2bcfe5878e",
"type": "form_field_placements",
"attributes": {
"form_field_id": "f004986e-e374-499b-a8f1-501deb048c43",
"form_set_id": "b28b0185-55a7-4491-ae61-938c57be016e",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and",
"non_editable": false
}
}
}