Question about Forms API & Picklist Visibility Rules

Michael_Florin
Level 10

Re: Question about Forms API & Picklist Visibility Rules

This payload finally worked:

{
"rules": [
{
"subjectField": "Country",
"operator": "is",
"values": [
"Germany"
],
"altLabel": "State",
"pickListValues": [
{
"label": "Select..."
},
{
"label": "CO",
"value": "CO"
}
]
},
{
"subjectField": "Country",
"operator": "is",
"values": [
"Austria"
],
"altLabel": "State",
"pickListValues": [
{
"label": "Select..."
},
{
"label": "CT",
"value": "CT"
}
]
}
],
"ruleType": "show"
}