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 created
Creates a new form_set_condition from provided data
curl --request POST \
--url https://api.rootly.com/v1/form_sets/{form_set_id}/conditions \
--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": "b8681429-bcb2-477d-b81a-0f674b33fdfa",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "4b13114e-356b-4f5a-8c12-5317055482ce",
"form_field_id": "eac9b302-7942-4309-b5b9-376d132ed0f9",
"comparison": "equal",
"values": [
"test"
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
form_set_condition created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/form_sets/{form_set_id}/conditions \
--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": "b8681429-bcb2-477d-b81a-0f674b33fdfa",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "4b13114e-356b-4f5a-8c12-5317055482ce",
"form_field_id": "eac9b302-7942-4309-b5b9-376d132ed0f9",
"comparison": "equal",
"values": [
"test"
]
}
}
}