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": "eb11f5d5-4081-4570-97a0-6bcc42a3dae0",
    "type": "form_set_conditions",
    "attributes": {
      "form_set_id": "59be454e-26db-4f1a-89cf-68d3f549d6d9",
      "form_field_id": "98b0cee7-40dd-47d8-863a-f4295e7d36ff",
      "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

200
application/vnd.api+json
form_set_condition updated
data
object
required