Hi! I’m trying to set up an API call that would subscribe user and create consents for both e-mail and SMS. My JSON looks like this:
{
"profiles": [
{
"email": "m***@z******s.**",
"phone_number": "+38631******",
"sms_consent": true,
"$consent": ["sms"]
}
]
}
and API url is structured like this:
{{URL}}/list/{{LIST_ID}}/subscribe
I tried both Single and Double opt-in and it’s not working. Both e-mail and phone number are saved to profile, but only e-mail consent is displayed.
I think I tried everything, but it’s still not working. Does anyone have an idea what I’m doing wrong?
Thank you!