Skip to content

Commit 4c67c58

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#119712
We made changes to the line no: 53 From: az ad app show --id $clientid --query objectid --output tsv To: az ad app show --id $clientid --query id --output tsv
1 parent 684e889 commit 4c67c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/healthcare-apis/register-application-cli-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In practice, you'll define variables, assign values to them, and set references
5050
### Define app registration name, etc.
5151
appregname=myappregtest1
5252
clientid=$(az ad app create --display-name $appregname --query appId --output tsv)
53-
objectid=$(az ad app show --id $clientid --query objectId --output tsv)
53+
objectid=$(az ad app show --id $clientid --query Id --output tsv)
5454
```
5555

5656
You can use `echo $<variable name>` to display the value of a specified variable.

0 commit comments

Comments
 (0)