We were under the impression that we could add a webhook/url with each recipient we added using recipients/bulk. So if our recipients looked like the below, we would just be able to add the webhook data with each one of the entries. After looking around the docs for a little while, it doesn't appear this is the case.:
{
"contacts" :[{
"email":"email@here.com",
"first_name": "John",
"last_name": "Doe",
"custom_fields": {
"1": "2428156"
}
},
{
"email":"somebodyelse@here.com",
"first_name": "Somebody",
"last_name": "Else",
"custom_fields": {
"1": "2428143"
}
}]
}
Does anybody know if this is possible? If not, how does everybody else send recipients in bulk and have each one in that list go to the proper webhook URL to parse the responses?
Thanks in advance, Whoopah