I have an output from web activity in Azure Data Factory which generate a JSON containing SAS token for blob storage. I need to pass this SAS Token as an URL to an other Web Activity after every run, as it will expired after 5 minutes.
output example in JSON:
{
"@odata.context":"https://<baseurl>/data/$metadata#Edm.String",
"value": "{\"BlobId\":\"{<GUID>}\",\"BlobUrl\":\"https://<baseurl_id>.blob.core.windows.net/dmf/<uniqueFileName>?<SAS Token>\"}"
}
}
The part that needs to be extracted:
https://<baseurl_id>.blob.core.windows.net/dmf/<uniqueFileName>?<SAS Token>
so far I tried this, by using dynamics content in second web activity:
@activity('web').output.value['BlobUrl']
Could you please support?