Skip to main content
PUT
/
v1
/
form_field_placement_conditions
/
{id}
Update a Form Set Condition
curl --request PUT \
  --url https://api.rootly.com/v1/form_field_placement_conditions/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "attributes": {
      "position": 123,
      "form_field_id": "<string>",
      "values": [
        "<string>"
      ]
    }
  }
}
'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "form_field_placement_id": "<string>",
      "position": 123,
      "form_field_id": "<string>",
      "values": [
        "<string>"
      ]
    }
  },
  "included": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {},
      "relationships": {}
    }
  ]
}

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_field_placement_condition updated

data
object
required
included
object[]