API Connector - Arrays & Nested Arrays

If the nested array is being sent from a server action, i.e. not from a browser action, then your options are limited to either:

  • Build up the string or parts of it before the API call, and store it ready to send.

  • For example, as each price item is created or updated, create a string of the JSON object { amount, currency, tax }. Then all the strings can be retrieved in a list.

  • Another example is to use the List Item Expression to build up the whole list from a Browser action, and store it for use by the server action.

  • If the list contents depends on server-side actions, you could call an external service to help build up the string.

  • Possibly build up the string by running an API workflow on a list, I don’t particularly like this option so I haven’t tried it.