Hello,
I have a "Create Blob" step in my Logic App and I'm trying to create a csv file. I have added the "Blob Content" as the comma separated header value ("assetPath,biddingAgency,campaignType,market") and it works fine but when I check the blob in Azure storage, the blob's content-type is set to text/plain whereas I need it to be text/csv as another action is dependent on this content-type.
I also tried passing below in the blob content but it doesn't help as mentioned here (https://theazureguy.wordpress.com/2020/02/13/setting-blob-content-type-in-logic-apps/comment-page-1/?unapproved=456&moderation-hash=388291d38fa9ea8bf026d0c77c362b4e#comment-456)
{
"$content": "assetPath,biddingAgency,campaignType,market",
"$content-type": "text/csv"
}
When I add "Compose" step with "Content-Type" in it, I get below error on execution


