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": "7112a3a2-d976-4b7f-9d84-981e28116f9b",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "6dbf66c6-53e7-45d7-9bb6-635b02c0dbd0",
      "form_field_id": "13b2a655-587e-482d-93d7-e37d6a811cb8",
      "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