URL not showing up in webhook for SMS
We're using a webhook to send Marketo data to Amazon SNS to then send an SMS. We've been success sending an SMS with a tokenized field for the message, however, we want to ultimately use this message field with a URL stored in a Marketo field to drive a renewal communication. I'm having trouble getting the URL to populate from the webhook in the text message. We've tried a few different permutations, but so far no luck.
This works and populates the mobile number and message, but the resulting SMS does not populate the URL.
[
{
MobileNumber : {{lead.Mobile Phone Number}},
Message : {{lead.Amazon SNS Message}},
Url : "www.google.com?test=test",
}
]
Tried this also with same result:
[
{
MobileNumber : {{lead.Mobile Phone Number}},
Message : {{lead.Amazon SNS Message}},
Url : {{lead.Enrollment Cart URL}},
}
]
Any ideas?