Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
form_set_condition updated
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": "bd10c686-28f3-421a-a89c-ab302a8720be",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "adc89f4e-5d30-478d-885c-2cacef1492ae",
"form_field_id": "6e9b975f-75d0-4554-86b2-988453d1fbf7",
"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": "bd10c686-28f3-421a-a89c-ab302a8720be",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "adc89f4e-5d30-478d-885c-2cacef1492ae",
"form_field_id": "6e9b975f-75d0-4554-86b2-988453d1fbf7",
"comparison": "equal",
"values": [
"test update"
]
}
}
}