Hi Deb, Security Zones settings would be able to solve your purpose. Do something like this and add the ip address you were trying to add. do not forget to select the webservice checkbox as you only want a webservice only access.
Hi Parvesh,You need to raise a ticket with Adobe/internal IT team to white list APNS server for IOS/Android for Marketing server.Look at the Architecture. end user never connects with marketing server rather APNS server does the talking.You should never expose your marketing server to public interne...
No, Adobe is not designed to scale for API calls like this. imagine if you have 100 million users in your database in a year number of email will reach 2 billion. so you need 2 billion API calls. Adobe can not scale to such levels.It's best to redesign the API to support Bulk operations or Change th...
No to option 1. Adobe campaign is not very scalable to work with API calls+ Adobe will bill you based on API calls. best is to use Amazon AWS box with Node js capabilities, get all data in there and transfer that using S3 bucket to Adobe campaign. Meanwhile, try to change that API to Bulk API which ...
Hi Lee,You need to build a query and in additional data use something like belowcount(Iif((@Name=''), NULL, @id))count(Iif((@age=''), NULL, @id))count(Iif((@shoeSize=''), NULL, @id)) This should give you the exact count.Regards,Amit
Hi Ganesh,you can use decryptString/decryptPassword to get the key.Read: decryptStringThe decryptString function is deprecated. Refer to the Deprecated and Removed Features article.For new customers, this function is now only used to decrypt the recipient's crypted ID in landing pages. To decrypt pa...
But that's not what you asked in the question. 4th will be available when he/she open/clicks the email.To get all users you need to use the broadlog in the base query with a filter as delivery internal name and status equal to sent and use tracking logs in the split to check if they exist a record.
Hi Rahul,You should use this to get the info.//pass externel id to get the object info.var extAccount = nms.extAccount.load(String(1234));logInfo(extAccount.server);Regards,Amit
Hi Raviteja,if you want to get all the users who opened or clicked than you need to remove the label condition and use only the delivery internal name criteria in your filter query and you will get all users. I can see in your logs you will get 2 users. usually, technical logs are updated every 1 ho...
Hi,ACS doesn't 't support the last day of the month in the schedule.all you can do is 1. Run/schedule your scheduler every 28th day of the month2. Use enrichment to get the lastday of the month as additional datai.e. SubMinutes(AddMonths(YearAndMonth(GetDate()), 1), 1)3. Check >In split if your last...