Call any azure endpoint using the proxy.
Just use {PROXY_BASE_URL}/azure/{endpoint:path}
{PROXY_BASE_URL}/azure/{endpoint:path}
curl -L \ --url '/azure/{endpoint}' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'
No body
curl -L \ --request POST \ --url '/azure/{endpoint}' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'
curl -L \ --request PUT \ --url '/azure/{endpoint}' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'
curl -L \ --request DELETE \ --url '/azure/{endpoint}' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'
curl -L \ --request PATCH \ --url '/azure/{endpoint}' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'