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": "e11499f3-67a9-48d0-9e9c-100fd526f0f0",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "ffe1458d-5a6c-4d4f-9d23-f7cd91a1495d",
"form_field_id": "d319d71c-c556-45f7-b5f0-e5aa6057d179",
"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": "e11499f3-67a9-48d0-9e9c-100fd526f0f0",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "ffe1458d-5a6c-4d4f-9d23-f7cd91a1495d",
"form_field_id": "d319d71c-c556-45f7-b5f0-e5aa6057d179",
"comparison": "equal",
"values": [
"test"
]
}
}
}