Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Hello @Santhi Dhanuskodi
To get the exact XML content within the file, you can use the Get Metadata activity after the Lookup activity. In the Get Metadata activity, you can specify the file path and select the Child Items option. This will give you the metadata of the file, including the size and modified date. You can then use the Copy Data activity to copy the file to a blob storage and select the Binary option for the Copy Behavior.
This will copy the file as binary data instead of JSON. Finally, you can use the Web activity to call the API with the body text as the XML content.
Here's an example pipeline:
-
Lookupactivity to get the file path and name. -
Get Metadataactivity to get the metadata of the file. -
Copy Dataactivity to copy the file to a blob storage as binary data. -
Webactivity to call the API with the body text as the XML content.
Let us know if this works.