Retrieves a specific form_field_placement_condition by id
curl --request GET \
--url https://api.rootly.com/v1/form_field_placement_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e71f2019-92fc-417a-8330-3958c03e13be",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "0d2d7313-6ac2-4416-ace1-bf1347508465",
"conditioned": "placement",
"position": 1,
"form_field_id": "2c38d4be-900a-48f6-9e0e-a7ff13713dbc",
"comparison": "equal",
"values": [
"test"
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_field_placement_condition found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/form_field_placement_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e71f2019-92fc-417a-8330-3958c03e13be",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "0d2d7313-6ac2-4416-ace1-bf1347508465",
"conditioned": "placement",
"position": 1,
"form_field_id": "2c38d4be-900a-48f6-9e0e-a7ff13713dbc",
"comparison": "equal",
"values": [
"test"
]
}
}
}