@Raguram Manokaran Welcome to Microsoft Q&A Forum, Thank you for posting your query here!
I see that you are trying to update the host.json file for your Function App.
Could you please follow the below steps and check if that helps ?
a. Open the Azure portal and navigate to your function app.
b. In the left-hand menu, select "Development Tools" and then select "Advanced tools (Kudu)".
c. In the Kudu console, select "Debug console" and then select "CMD".
d. Navigate to the "site/wwwroot" folder and locate the host.json file.
e. select "Edit" as shown below:
f. Update the file as required and save the changes.
g. You may have to restart your Function App after you make the changes in order for the changes to take effect.
h. Note: If you wish to update the function.json, in the same wwwroot folder you can navigate to your function and find your function.json file and edit it accordingly.
The host.json schema is mentioned in this article.
Please note editing the code from the Azure portal is not a good practice though. You could try testing your code on the Visual Studio Dev environment locally and check if your app works fine. Then you can deploy your function app to Azure as explained here.
Hope this helps.
**
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.