I am trying to update a brevo multi select field but I cant seem to figure it out.
I tried this
{
“YOOBI_ACADEMIE”: [
“EL AI”,
“EL Impact”,
“IC DT Toezichthouders”
]
}
I am trying to update a brevo multi select field but I cant seem to figure it out.
I tried this
{
“YOOBI_ACADEMIE”: [
“EL AI”,
“EL Impact”,
“IC DT Toezichthouders”
]
}
Hi,
I figure this out by using the “Make an API Call” module with this body (for your specific use case) :
{
"attributes": {
"YOOBI_ACADEMIE": ["EL AI","EL Impact","IC DT Toezichthouders"]
},
"updateEnabled": true,
"email": "YOUR_EMAIL@mail.com"
}
I can’t make it works by using the “Create a contact” module.
Hope this help !