Hi @angiep33244241 You can use custom code to change Alt text: // jQuery
$('img').filter(':first').attr('alt', 'My image')
// Vanilla
document.querySelector('img').setAttribute('alt', 'My image')from: https://gist.github.com/joyrexus/7307312
Hi Mihai, after several attempts to get this work, I am still getting 404 error. Steps I had to take (which dont seem to be documented so need to understand what is wrong):1. Downloaded Openshisk on my Mac and extracted the WSK executable.2. Added the folder to PATH.3. Created an IO Integration with...
hi Michael, thanks for this. Upon trying to following command, I am getting error_code 401013 error, with message = Oauth token is not valid. curl -H "X-Api-Key: <Your Client ID>" -H "x-ims-org-id: <Your Org ID>" -H "Authorization: Bearer <Auth Token>" -H "accept: application/json" https://api.ado...
Hi there, When I run the commandaio console:list-integrationsI can see my Adobe IO Integration listed successfully. However, when I runaio console:select-integration number1_number2I get following error: Error: Cannot retrieve integration: https://api.adobe.io/runtime/admin/namespaces/number1/number...
Hi there, yes - this is done dynamically as Target evaluates Customer Attributes similar to Profile Attributes as each mbox request. Will suggest testing your code to ensure you are getting expectes results. Regards,Rajneesh
Hi @helenf51726996, campaign ID is available as Activity ID under Overview section of activities (when you click on an Activity in the Activities list). Are you specifically looking for activity-id in the URL?Regards,Rajneesh
Hi @mattk84335255, while using dynamic tokens in offer-code, you can provide default valie like this:var x = ${user.x default="default_val"}; // Setting default value for profile attribute xHope this helps,Regards,Rajneesh
Hi @mattk84335255, you can use following code in Target offer to fetch a customer-attribute value directly:var a = "${crs.<integration-name>.<customer-attribute-name>}" Note that <integration-name> is name of Customer Attributes Integration and NOT the alias-id.Hope it helps,Rajneesh