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": "73de2da5-f3e1-45ab-b1c3-26c42ce89c30",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "4eefa856-7dd9-4e60-8901-4370b47d68f8",
"form_field_id": "c27f12da-2bb0-461c-a68d-81b033b4c2b8",
"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": "73de2da5-f3e1-45ab-b1c3-26c42ce89c30",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "4eefa856-7dd9-4e60-8901-4370b47d68f8",
"form_field_id": "c27f12da-2bb0-461c-a68d-81b033b4c2b8",
"comparison": "equal",
"values": [
"test"
]
}
}
}