PUT
/
v1
/
form_set_conditions
/
{id}
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": "d2bfeba0-eb73-4061-839f-1f081e9a6dbb",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "d50d2b42-5b1f-4d01-b276-4f9b89da124d",
      "form_field_id": "559b51a2-f136-4255-b1eb-7498aff09d23",
      "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

Response

200
application/vnd.api+json

form_set_condition updated

The response is of type object.