I am getting below Json and want to send request to Teams Chanel , Conection is setup and able to send complete Json Array but i want to send in Format like mention.
Json Recieved
{ "body": [ [ "2024-03-15T06:06:16.299Z", "Res1", "Integ1", "Process1" ], [ "2024-03-15T06:07:19.469Z", "Res2", "Integ2", "Process2" ], [ "2024-03-15T06:08:32.976Z", "Res3", "Integ3", "Process3" ] ] }
Post to Teams Channel
Timestamp- 2024-03-15T06:06:16.299Z
RG- Res1
Service- Integ1
Process- Process1
Timestamp- 2024-03-15T06:07:19.469Z
RG- Res2
Service- Integ2
Process- Process2
Timestamp- 2024-03-15T06:08:32.976Z
RG- Res3
Service- Integ3
Process- Process3
I tried to use triggerBody()?['body'][0]' for TimeStamp but getting exception . Appriciate if I can get some guidance how this can be achived . I am new in logic apps and in learning phase.

You can use the
Selectaction and thejoinfunction to achieve the desired result - nothing else is required.I am assuming that indeed the following request is sent to your Logic App:
And not the following:
First, the
Selectaction will help you convert the array of arrays into an array of strings.Code View of the
Selectaction:Screenshot of the result:
Then, the
joinfunction will help you convert this array of strings into a string in desired format.Code View of the
Composeaction that uses thejoinfunction:Output of the
Composeaction:Screenshot of the result: