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": "e42c0e73-c359-484b-8600-fc24e8ca41b3",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "8e41e8fa-8888-4e84-98d6-e8b53bf8a025",
"form_field_id": "d24047b8-b98a-4ede-a9ef-ba20134a0364",
"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
Unique ID of the form set condition
form_set_conditions Show child attributes
The form set this condition applies.
The form field this condition applies.
The condition comparison.
equal The values for comparison.
The value for comparison.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/form_set_conditions/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "e42c0e73-c359-484b-8600-fc24e8ca41b3",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "8e41e8fa-8888-4e84-98d6-e8b53bf8a025",
"form_field_id": "d24047b8-b98a-4ede-a9ef-ba20134a0364",
"comparison": "equal",
"values": [
"test"
]
}
}
}