Logic Apps : Blob name is null or empty

Recently when working with Azure blob Storage Action :  Extract Archive to Folder I faced the error “Blob name is null or empty”.

Host

{ "api": { "runtimeUrl": "https://logic-apis-westeurope.azure-apim.net/apim/azureblob" },

1

 

 

Method : post

Path : /datasets/default/extractFolderV2

Queries : { "destination": "/testoutput", "source": "/test/shashiwebsite_201506011619.zip" }

Output Body : { "status": 400, "message": "Blob name is null or empty.", "source": "127.0.0.1" }

Solution:

In the destination, we should also provide a prefix for the files extracted along with the destination folder name like.

Source archive blob path : /test/shashiwebsite_201506011619.zip

Destination folder path : /testoutput/testout 2

Post which the files are extracted successfully and all the files are unzipped with the provided prefix.

3