Type | Namespace | XML Schema |
---|---|---|
contacts | http://api.crunch.co.uk/rest | api.xsd |
A wrapper for a collection of contact elements
<?xml version="1.0" encoding="UTF-8"?> <contacts xmlns="http://api.crunch.co.uk/rest" count="..."> <contact includeInEmail="..." primaryContact="..."> <name>...</name> <email>...</email> <telephone>...</telephone> <role>...</role> </contact> <contact includeInEmail="..." primaryContact="..."> <!--...--> </contact> <!--...more "contact" elements...--> </contacts>
{ "count" : ..., "contact" : [ { "includeInEmail" : false, "primaryContact" : false, "name" : "...", "email" : "...", "telephone" : "...", "role" : "..." }, ... ] }