So fiddling with using find & replace I was able to turn the object into a list of objects. This was able to get bubble to recognize there were several items.
So from this:
{
"ResponseCode": 200,
"ResponseText": "OK",
"Data": {
"740300008": "Accounting",
"740300005": "Advanced Find / Reporting",
"740300007": "Automation",
"740300000": "Classes",
"740300006": "Committees",
"740300002": "Core",
"740300003": "Dues",
"740300001": "Meetings",
"740300004": "Membership",
"740300009": "Other"
}
}
To This:
{
"ResponseCode": 200,
"ResponseText": "OK",
"Data":
[{
"740300008": "Accounting"
},
{
"740300005": "Advanced Find / Reporting"
},
{
"740300007": "Automation"
},
{
"740300000": "Classes"
},
{
"740300006": "Committees"
},
{
"740300002": "Core"
},
{
"740300003": "Dues"
},
{
"740300001": "Meetings"
},
{
"740300004": "Membership"
},
{
"740300009": "Other"
}]
}
However, I believe the desired format should be this:
{
"ResponseCode": 200,
"ResponseText": "OK",
"Data":
[
{
"value":"740300008"
"display":"Accounting"
}'
{
"value":"740300005"
"display":"Advanced Find / Reporting"
}'
{
"value":"740300007"
"display":"Automation"
}'
{
"value":"740300000"
"display":"Classes"
}'
{
"value":"740300006"
"display":"Committees"
}'
{
"value":"740300002"
"display":"Core"
}'
{
"value":"740300003"
"display":"Dues"
}'
{
"value":"740300001"
"display":"Meetings"
}'
{
"value":"740300004"
"display":"Membership"
}'
{
"value":"740300009"
"display":"Other"
}
]
}
Is there a plugin that helps one turn these key value pairs into attributes of an object?
If not, I am wondering if I would need to write a custom action to do this.