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": "af4550f0-da40-48f2-a85a-a121356fa488",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "d5c6f015-9306-46cc-b366-080bf757cd32",
"form_field_id": "8848df87-bcda-49e9-ab05-03669766df14",
"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": "af4550f0-da40-48f2-a85a-a121356fa488",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "d5c6f015-9306-46cc-b366-080bf757cd32",
"form_field_id": "8848df87-bcda-49e9-ab05-03669766df14",
"comparison": "equal",
"values": [
"test update"
]
}
}
}