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": "afa670d6-4a2b-4665-af4b-9da74e8e6d15",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "80661516-cb3a-415a-8926-4c71b7338c21",
"form_field_id": "debfa32f-32a7-41e8-8c43-3ad6d29be548",
"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": "afa670d6-4a2b-4665-af4b-9da74e8e6d15",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "80661516-cb3a-415a-8926-4c71b7338c21",
"form_field_id": "debfa32f-32a7-41e8-8c43-3ad6d29be548",
"comparison": "equal",
"values": [
"test update"
]
}
}
}