Hello @dipendu_g
You can do something like this:
var recipient = {recipient: {_key: "email", email: "john.smith@example.com"}} // identify the recipient
nms.subscription.Subscribe("SVC1", recipient, false) //subscribe to service 1
nms.subscription.Subscribe("SVC2", recipient, false) //subscribe...
Hello @abhinav99
I am assuming the external endpoint is returning a JSON object with all values required to create a template.
What you can do is read data from the endpoint and create template with some JS code.
How to read JSON data from an API:
var req = new HttpClientRequest("ENDPOINT")
...
Hello @dipendu_g Are you using correct form encoding to upload file via Ajax?
Here is what is used in form to upload images.
enctype="multipart/form-data"
Hello @HanadyTa
Here are my thoughts on this
A. Incorrect - we need user consent (not email) to meet legal requirements.
B. Incorrect - Primary key field is auto generated.
C. Correct - We collect emails to send emails that the whole point of collecting them,
D. Correct - We might want to upd...