Update a specific form_set_condition by 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": "f63573d6-04a7-495c-b91a-965e8ca9c38a",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "773522aa-6ca9-4248-af19-9b1fd7b49d56",
"form_field_id": "5c4b43bd-07f9-4563-9046-ddaa17e25d9b",
"comparison": "equal",
"values": [
"test update"
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_set_condition updated
Show child attributes
Was this page helpful?
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": "f63573d6-04a7-495c-b91a-965e8ca9c38a",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "773522aa-6ca9-4248-af19-9b1fd7b49d56",
"form_field_id": "5c4b43bd-07f9-4563-9046-ddaa17e25d9b",
"comparison": "equal",
"values": [
"test update"
]
}
}
}