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": "d9c1c231-67e3-4144-8db4-28cae3483304",
"type": "form_field_placements",
"attributes": {
"form_field_id": "6f8ca897-550b-480c-8d8d-15d7128fa375",
"form_set_id": "f237c357-3125-415a-984e-51339cba62d7",
"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": "d9c1c231-67e3-4144-8db4-28cae3483304",
"type": "form_field_placements",
"attributes": {
"form_field_id": "6f8ca897-550b-480c-8d8d-15d7128fa375",
"form_set_id": "f237c357-3125-415a-984e-51339cba62d7",
"form": "web_new_incident_form",
"position": 1,
"required": false,
"placement_operator": "and",
"required_operator": "and"
}
}
}