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": "7112a3a2-d976-4b7f-9d84-981e28116f9b",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "6dbf66c6-53e7-45d7-9bb6-635b02c0dbd0",
"form_field_id": "13b2a655-587e-482d-93d7-e37d6a811cb8",
"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": "7112a3a2-d976-4b7f-9d84-981e28116f9b",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "6dbf66c6-53e7-45d7-9bb6-635b02c0dbd0",
"form_field_id": "13b2a655-587e-482d-93d7-e37d6a811cb8",
"comparison": "equal",
"values": [
"test update"
]
}
}
}