Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
form_set_condition found
Retrieves a specific form_set_condition by id
curl --request GET \
--url https://api.rootly.com/v1/form_set_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b34af7ae-5972-4b1f-b5a1-c05b2c2b1485",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "bd5bf390-928d-4dde-a05e-c66f923550d3",
"form_field_id": "0890eec3-5183-43a2-8ec9-fc3ec111da41",
"comparison": "equal",
"values": [
"test"
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set_condition found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_set_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b34af7ae-5972-4b1f-b5a1-c05b2c2b1485",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "bd5bf390-928d-4dde-a05e-c66f923550d3",
"form_field_id": "0890eec3-5183-43a2-8ec9-fc3ec111da41",
"comparison": "equal",
"values": [
"test"
]
}
}
}