I'm able to successfully copy a ZIP file from OneDrive to a SPO library. Then I like to extract the ZIP but this action fails and results always with an error 400.
{
"inputs": {
"host": {
"connection": {
"name": "@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$connections']['shared_sharepointonline_1']['connectionId']"
}
},
"method": "post",
"path": "/datasets/@{encodeURIComponent(encodeURIComponent('https://contoso.sharepoint.com/sites/Test-RM'))}/extractFolderV2",
"queries": {
"source": "@body('Datei_erstellen')?['Path']",
"destination": "/Dokumentenablage/tmp",
"overwrite": true,
"queryParametersSingleEncoded": true
},
"authentication": {
"type": "Raw",
"value": "@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"
}
},
"metadata": {
"flowSystemMetadata": {
"swaggerOperationId": "ExtractFolderV2"
}
}
}
Is this a permission issue or simply not working?