Update a specific form_field_placement_condition by id
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": {
"type": "form_field_placement_conditions",
"attributes": {
"conditioned": "placement",
"position": 123,
"form_field_id": "<string>",
"comparison": "equal",
"values": [
"<string>"
]
}
}
}
'{
"data": {
"id": "067fdc76-4beb-419a-a812-b3328d98e07c",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "db0a40af-342f-4974-9b18-4041112fc06d",
"conditioned": "placement",
"position": 1,
"form_field_id": "743a93fb-00fc-466d-8c9f-14d197d2d022",
"comparison": "equal",
"values": [
"bar"
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_field_placement_condition updated
Show child attributes
Was this page helpful?
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": {
"type": "form_field_placement_conditions",
"attributes": {
"conditioned": "placement",
"position": 123,
"form_field_id": "<string>",
"comparison": "equal",
"values": [
"<string>"
]
}
}
}
'{
"data": {
"id": "067fdc76-4beb-419a-a812-b3328d98e07c",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "db0a40af-342f-4974-9b18-4041112fc06d",
"conditioned": "placement",
"position": 1,
"form_field_id": "743a93fb-00fc-466d-8c9f-14d197d2d022",
"comparison": "equal",
"values": [
"bar"
]
}
}
}