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": "99e9f96d-e711-4a1c-8931-64362f16bb51",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "309e970c-0a2c-40d0-8ce2-de6426ee2724",
"form_field_id": "a5df5274-ccc5-430d-aae6-7f536f4a3fe2",
"comparison": "equal",
"values": [
"test"
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set_condition found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_set_conditions/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "99e9f96d-e711-4a1c-8931-64362f16bb51",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "309e970c-0a2c-40d0-8ce2-de6426ee2724",
"form_field_id": "a5df5274-ccc5-430d-aae6-7f536f4a3fe2",
"comparison": "equal",
"values": [
"test"
]
}
}
}