I've been learning HTTP callout (more on that in a blog here), and there is a lot of good information in my action's output that I can't access (it's an array of strings called "places") pictured below:
I haven't been able to assign any of the outputs in "places" to a Salesforce object. However, I am able to assign the values of strings that aren't part of "places" (i.e. country) to a salesforce object.
I noticed that it was listed as an apex-defined collection in the formula editor
I first tried creating an Apex-Defined variable.
This lets me access all of the values in the apex class I made, but they are empty.
I tried again by creating an apex collection variable and assigning the outputs from my action to the variable:
This worked.
But I'm entirely stumped on my next step. How can I assign these values from the collection variable to the apex-defined variables or fields on standard objects? Thanks for your help.
Hi @Dirk Keaton,
I am having the same issue! I cannot figure out the next step.
Did you ever find a solution to this?