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": "3b19a48b-fb7a-4738-86c3-f8c1267b3d1c",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "f576ab2b-5ddc-40c6-abbc-a762057eb67a",
"form_field_id": "4b38f0fd-e0ac-4b44-903d-0199ce2009c3",
"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": "3b19a48b-fb7a-4738-86c3-f8c1267b3d1c",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "f576ab2b-5ddc-40c6-abbc-a762057eb67a",
"form_field_id": "4b38f0fd-e0ac-4b44-903d-0199ce2009c3",
"comparison": "equal",
"values": [
"test update"
]
}
}
}