how to call azure REST API endpoint
The followings are steps you need to do to call Azure REST API endpoint. We need to obtain the token and then hit this endpoint using bearer token authorizations
TOKEN=$(az account get-access-token --query accessToken --output tsv)
curl -X GET \ "https://management.azure.com/
Comments