Using custom API calls in Delivery | Community
Skip to main content
Level 2
November 2, 2020
Solved

Using custom API calls in Delivery

  • November 2, 2020
  • 1 reply
  • 1804 views

Hello,

We have a need to use a variable inside of a delivery which is being generated by using the .js API to query a data table containing advisors and their assigned wholesalers, then create an array of the advisors and include that in a delivery to each wholesaler. How can we include this array inside the delivery? Since it is dynamic & a different array of advisors for each wholesaler (the delivery recipients),  I don't believe the built-in delivery variables can accommodate. We attempted to use Personalization Blocks but it appears those aren't capable running queries & returning the results as variables. Working JS snippet attached... now we are just trying to figure out how to carry the advisorArray into the delivery. Any suggestions are appreciated.

 

 

Thank you,

Austin

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Darren_Bowers

Hi Austin - it sounds from what you are trying to do you just need format the output of the array (Advisors) into the content of the Email? If that is the case then I would just enrich a text field onto the schema and add some HTML text into it based on the array content for each target. So basically the variable on the schema contains your output HTML block.

You can do this in your query by getting the temporary schema and writing back to it with the contents of the text/memo field with your HTML (as text). Check out this post on how to do this: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/advanced-workflow-data-enrichment/qaq-p/355955

Cheers

Darren

 

1 reply

Darren_Bowers
Darren_BowersAccepted solution
Level 9
November 2, 2020

Hi Austin - it sounds from what you are trying to do you just need format the output of the array (Advisors) into the content of the Email? If that is the case then I would just enrich a text field onto the schema and add some HTML text into it based on the array content for each target. So basically the variable on the schema contains your output HTML block.

You can do this in your query by getting the temporary schema and writing back to it with the contents of the text/memo field with your HTML (as text). Check out this post on how to do this: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/advanced-workflow-data-enrichment/qaq-p/355955

Cheers

Darren

 

Darren_Bowers
Level 9
November 5, 2020
What type of field did you use to store the advisors HTML? I had major issues trying to use an actual memo/html field so just used a normal string field to store the HTML I wanted to insert. Also be aware that you probabaly need to HTMLencode the data you put into the temporary variable