Last active
August 29, 2015 14:04
-
-
Save mamund/82d1e9e611065a5b8df0 to your computer and use it in GitHub Desktop.
message extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"url" : "http://api.example.com/1", | |
"givenName" : "Mike", | |
"familyname" : "Amundsen", | |
"email" : "[email protected]", | |
"phone" : "123-456-7890" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"url" : "http://api.example.com/1", | |
"givenName" : "Mike", | |
"familyname" : "Amundsen", | |
"email" : "[email protected]", | |
"phone" : "123-456-7890", | |
"ext" : [ | |
{"name" : "workPhone", "value" : "234-567-8901"}, | |
{"name" : "workEmail", "value" : "[email protected]"} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id" : "q1w32e3r4", | |
"url" : "http://api.example.com/1", | |
"person" : { | |
"givenName" : "Mike", | |
"familyname" : "Amundsen", | |
"email" : "[email protected]", | |
"phone" : "123-456-7890" | |
}, | |
"address" : { | |
"street1" : "123 Main", | |
"street2" : "Apt #1", | |
"city" : "Byteville", | |
"stateRegion" : "MD", | |
"postalCode" : "12345" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id" : "q1w32e3r4", | |
"url" : "http://api.example.com/1", | |
"givenName" : "Mike", | |
"familyname" : "Amundsen", | |
"email" : "[email protected]", | |
"phone" : "123-456-7890", | |
"street1" : "123 Main", | |
"street2" : "Apt #1", | |
"city" : "Byteville", | |
"stateRegion" : "MD", | |
"postalCode" : "12345" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
givenName=Mike&familyName=Amundsen&phone=123-456-7890 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment