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": "6949ec62-1250-4446-9b7d-fe4e00195f68",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "ff13d044-ca26-4239-85b8-54938b749b80",
"conditioned": "placement",
"position": 1,
"form_field_id": "c9d598cf-f9b6-47cf-a816-e7cb166477dc",
"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": "6949ec62-1250-4446-9b7d-fe4e00195f68",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "ff13d044-ca26-4239-85b8-54938b749b80",
"conditioned": "placement",
"position": 1,
"form_field_id": "c9d598cf-f9b6-47cf-a816-e7cb166477dc",
"comparison": "equal",
"values": [
"test"
]
}
}
}