Anyone know if the bubble connector supports sending array data as a parameter? Parameters are just easier to modify in the Bubble UI.
I have json that looks like which I could put in the body of the API call:
{
“personalizations”: [
{
“to”: [
{
“email”: “john.doe@example.com”,
“name”: “John Doe”
}
],
“subject”: “Hello, World!”
}
]
}
Instead, I’m curious if it can be sent as parameters, something like …
personalizations.to.email = john.doe@example.com
personalizations.to.name = John Doe
personalizations.subject = Hello, World!