Hi @gurudas puthal
Since you can't use Lookup or Data Flow, you can try the following approach using ForEach and Web Activity in Azure Data Factory:
Solution:
- Use Get Metadata Activity: Get the JSON file from Azure Blob Storage.
- Use a Web Activity to read the file: This will load the JSON content.
- Use a ForEach Activity: To loop through each record (split the JSON array).
- Inside ForEach, use Web Activity: To send each record one by one to the API.
Main Points to Think About:
- If the JSON file is large, you may need to paginate or batch the records to avoid performance issues.
- Ensure the API can handle multiple requests efficiently.
- If required, consider using Azure Functions or Logic Apps for more flexibility.
I hope this helps. Let me know if you need more details.