Skip to content

Commit 155a3f9

Browse files
committed
add example response
1 parent c2699db commit 155a3f9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

graph/patterns/alternate-key.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,21 @@ https://graph.microsoft.com/v1.0/users/1a89ade6-9f59-4fea-a139-23f84e3aef66
4444
https://graph.microsoft.com/v1.0/users(ssn='123-45-6789')
4545

4646
https://graph.microsoft.com/v1.0/users(email='[email protected]')
47+
48+
All of the 3 will yield the sare response:
49+
50+
51+
```json
52+
{
53+
"givenName": "Bob",
54+
"jobTitle": "Retail Manager",
55+
"mail": "[email protected]",
56+
"mobilePhone": "+1 425 555 0109",
57+
"officeLocation": "18/2111",
58+
"preferredLanguage": "en-US",
59+
"surname": "Vance",
60+
"userPrincipalName": "[email protected]",
61+
"id": "1a89ade6-9f59-4fea-a139-23f84e3aef66"
62+
}
63+
```
64+

0 commit comments

Comments
 (0)