kramwe
September 13, 2017, 11:14am
6
@nicolas_dap ,
Has there been any updates since May to how Bubble Connector passes nested key:pairs? Ran into your same issue with Sendgrid and adding meta data to emailed events.
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 =…