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": "044e37ac-0d2c-490b-86ef-2a5fab1506b0",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "841bbed9-68c4-45a0-86a4-75e9071a2d36",
"form_field_id": "e1e5dd17-5c53-40e7-a4c8-954d525a35ba",
"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": "044e37ac-0d2c-490b-86ef-2a5fab1506b0",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "841bbed9-68c4-45a0-86a4-75e9071a2d36",
"form_field_id": "e1e5dd17-5c53-40e7-a4c8-954d525a35ba",
"comparison": "equal",
"values": [
"test update"
]
}
}
}