Skip to main content
PUT
/
v1
/
form_set_conditions
/
{id}
Update a Form Set Condition
curl --request PUT \
  --url https://api.rootly.com/v1/form_set_conditions/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "form_set_conditions",
    "attributes": {
      "form_field_id": "<string>",
      "comparison": "equal",
      "values": [
        "<string>"
      ]
    }
  }
}
'
{
  "data": {
    "id": "759f6d8d-3d0f-4c8d-94fa-abdc231f7993",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "2591b8f8-4625-4220-827f-6721b5aa9846",
      "form_field_id": "8eac1a78-cbb2-4341-9f0f-cf22da82e601",
      "comparison": "equal",
      "values": [
        "test update"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

form_set_condition updated

data
object
required