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": "edc318cb-a838-402e-87eb-f5feb9d460fd",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "caa97138-7762-46cb-85ef-0ee56610ef47",
"form_field_id": "358430a8-b421-4b7b-9e9a-436c403df574",
"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": "edc318cb-a838-402e-87eb-f5feb9d460fd",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "caa97138-7762-46cb-85ef-0ee56610ef47",
"form_field_id": "358430a8-b421-4b7b-9e9a-436c403df574",
"comparison": "equal",
"values": [
"test update"
]
}
}
}