Subhendu De
Subhendu De

Reputation: 27

Azure rest api endpoint to read the Azure functions appsettings

I'm looking for an Azure REST API to list the Azure Functions appsettings defined in the Azure portal. Based on the documentation here, it looks like supporting three options

Is there any REST API endpoint that I can use to get the list of appsettings for Azure function app?

Upvotes: 0

Views: 312

Answers (1)

Hury Shen
Hury Shen

Reputation: 15724

You can use this api:

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/appsettings/list?api-version=2019-08-01

Upvotes: 1

Related Questions