List form_set_conditions
curl --request GET \
--url https://api.rootly.com/v1/form_sets/{form_set_id}/conditions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "<string>",
"form_field_id": "<string>",
"comparison": "equal",
"values": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/form_sets/{form_set_id}/conditions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "form_set_conditions",
"attributes": {
"form_set_id": "<string>",
"form_field_id": "<string>",
"comparison": "equal",
"values": [
"<string>"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}