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": "9266d218-fbb7-4b83-8e08-5012f725b7da",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "8e43b778-d5aa-4907-9b60-652e0406378c",
"form_field_id": "a1e0a805-809c-4898-9b00-70777cf2ff35",
"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": "9266d218-fbb7-4b83-8e08-5012f725b7da",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "8e43b778-d5aa-4907-9b60-652e0406378c",
"form_field_id": "a1e0a805-809c-4898-9b00-70777cf2ff35",
"comparison": "equal",
"values": [
"test"
]
}
}
}