GET
/
v1
/
form_set_conditions
/
{id}
Retrieves a Form Set Condition
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"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

form_set_condition found

The response is of type object.