Hi guys i invoke an endpoint via a WebActivity.
The response looks like this:
{
"Links": {},
"Items": [
{
"WebId": "123",
"Id": "456",
"Name": "ABC",
"Path": "\\\\Server[DEF]",
"IsConnected": false,
"ServerVersion": "",
"ServerTime": null,
"Links": {
"Self": "https://DEF/api/data/789",
"Points": "https://DEF/api/data/890/points",
"EnumerationSets": "https://DEF/api/dataservers/901/enumerationsets"
}
}
],
"ADFWebActivityResponseHeaders": {
"Transfer-Encoding": "chunked",
"X-Frame-Options": "SAMEORIGIN",
"Date": "Wed, 25 Aug 2021 07:58:22 GMT",
"Server": "Microsoft-HTTPAPI/2.0",
"Content-Type": "application/json; charset=utf-8"
},
"effectiveIntegrationRuntime": "shir-adf-euw-p(shir-adf-euw-p)",
"executionDuration": 0,
"durationInQueue": {
"integrationRuntimeQueue": 7
},
"billingReference": {
"activityType": "ExternalActivity",
"billableDuration": [
{
"meterType": "SelfhostedIR",
"duration": 0.016666666666666666,
"unit": "Hours"
}
]
}
}
How can i save that response on ADLS as json-File?
Preferable with ADF standard activites and not Azure Functions or Batch.
Thanks for your support!