how to transform xml file to json without integration account in azure logic app

Rashmiramchandra Prabhu 66 Reputation points
2023-07-28T08:55:35.0066667+00:00

I am getting xml file as input in service bus and want to transform it to json with specified mapping format and then drop json file to sftp.Dont want to used integration account any other connector or way appriciated

Thanks!!

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,221 questions
{count} vote

Accepted answer
  1. Pramod Valavala 20,636 Reputation points Microsoft Employee
    2023-07-28T09:50:22.1066667+00:00

    @Rashmiramchandra Prabhu You can directly use the xml and json functions to make such a conversion.

    Use the compose action with the following expression and use its output in the SFTP action.

    json(xml('<xml-as-string>'))
    

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.