Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
form_field_placement_condition updated
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": "7e5f840b-7dd8-45e1-9012-9e88e58f8e0a",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "a9478cd9-ba08-4539-9b23-4e85af5b69a9",
"conditioned": "placement",
"position": 1,
"form_field_id": "9b302b84-6873-48e2-8b79-b80bbf0008d7",
"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": "7e5f840b-7dd8-45e1-9012-9e88e58f8e0a",
"type": "form_field_placement_conditions",
"attributes": {
"form_field_placement_id": "a9478cd9-ba08-4539-9b23-4e85af5b69a9",
"conditioned": "placement",
"position": 1,
"form_field_id": "9b302b84-6873-48e2-8b79-b80bbf0008d7",
"comparison": "equal",
"values": [
"bar"
]
}
}
}