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": "26ee5413-8bc4-4248-81da-358015a458ae",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "375ae0fa-75f5-44ee-b6fc-cf599e8449eb",
      "form_field_id": "0d362bc0-cc64-4883-b78b-e807a05c4ed2",
      "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": "26ee5413-8bc4-4248-81da-358015a458ae",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "375ae0fa-75f5-44ee-b6fc-cf599e8449eb",
      "form_field_id": "0d362bc0-cc64-4883-b78b-e807a05c4ed2",
      "comparison": "equal",
      "values": [
        "test"
      ]
    }
  }
}