-
Notifications
You must be signed in to change notification settings - Fork 267
Open
Labels
Milestone
Description
az has a rest command that automatically adds necessary authentication heads to rest calls using the tokens from az login. This is helpful in filling gaps where REST is required such as calls like this:
az rest \
--method PATCH \
--uri "https://graph.microsoft.com/v1.0/applications/$apiObjectId" \
--headers 'Content-Type=application/json' \
--body "{ identifierUris:.... "
Should we support azd rest to allow these interactions as well?