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": "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"
      ]
    }
  }
}

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.