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": "8515e2c6-7c74-4d6c-a6c2-32178496e17b",
"type": "form_field_placements",
"attributes": {
"form_field_id": "fee7bcbe-1ea6-4b8b-96b1-ba5ea67fdd46",
"form_set_id": "c1090332-7854-41fa-9e65-d623dac6c26f",
"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 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": "8515e2c6-7c74-4d6c-a6c2-32178496e17b",
"type": "form_field_placements",
"attributes": {
"form_field_id": "fee7bcbe-1ea6-4b8b-96b1-ba5ea67fdd46",
"form_set_id": "c1090332-7854-41fa-9e65-d623dac6c26f",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}