addressBookContacts element
Type: | contacts |
Namespace: | (default namespace) |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<addressBookContacts>
<contact>
<id>...</id>
<fullName>...</fullName>
<primaryEmail>...</primaryEmail>
</contact>
<contact>
<!--...-->
</contact>
<!--...more "contact" elements...-->
</addressBookContacts>
Example JSON
{
"contact" : [ {
"id" : "...",
"fullName" : "...",
"primaryEmail" : "..."
}, ... ]
}