problem in showing data using Web integration

when i use normal database using through expression rule it will be show in multiple card's

when i use web integration so it will showing all information in only one card layout , how can i spilt this information into multiple card layout's

  Discussion posts and replies are publicly visible

Parents
  • Hi,

    In your second screenshot, it seems fv!item is referring to the full output of your integration, and you only have one of those, hence only one card. But you have multiple 'fv!item.result.body.quantity', which are all retrieved and concatenated in this case.

    Instead of iterating over the full integration result, you will need to iterate over each item in [integrationResultVarName].result.body.

    Hope this helps!

    Marco

Reply
  • Hi,

    In your second screenshot, it seems fv!item is referring to the full output of your integration, and you only have one of those, hence only one card. But you have multiple 'fv!item.result.body.quantity', which are all retrieved and concatenated in this case.

    Instead of iterating over the full integration result, you will need to iterate over each item in [integrationResultVarName].result.body.

    Hope this helps!

    Marco

Children