TOP

SearchMergedContacts()

Part Of: Contact Webservice 3.0

WSDL:

https://webservices.vin65.com/V300/ContactService.cfc?wsdl

Australian URL:

https://webservices.aus.vin65.com/V300/ContactService.cfc?wsdl

Description:

Use the SearchMergedContacts() function to get a list of all contacts that have been merged using the search options listed below. Required fields are indicated by a '*'

Parameters:

Attribute Data Type Default Description
WebsiteIDs UUID List   Available for Enterprise Webservices
Comma seperated list of WebsiteIDs in Enterprise
Leave blank for all Websites
ContactID UUID   UUID of the Vin65 Contact
DateMergedFrom DateTime    
DateMergedTo DateTime    
MaxRows Integer 100  
Page Integer  

Sample Request:

<soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="https://www.w3.org/2001/XMLSchema">
<soap:Body>
  <SearchMergedContacts>
    <Request>
      <Security>
        <Username>//Your Username//</Username>
        <Password>//Your Password//</Password>
      </Security>
      <WebsiteIDs></WebsiteIDs>
      <DateMergedFrom>2011-01-01T12:21:43</DateMergedFrom>
      <DateMergedTo>2011-09-12T12:21:43</DateMergedTo>
      <MaxRows>100</MaxRows>
      <Page>1</Page>
    </Request>
  </SearchMergedContacts>
</soap:Body>
</soap:Envelope>  

Sample Response:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
  <SearchMergedContactsResponse>
    <SearchMergedContactsReturn>
      <Errors></Errors>
      <IsSuccessful>true</IsSuccessful> 
      <MergedContacts>
        <MergedContact>
          <WebsiteID>66272648-1e0b-4e34-f09b-81477a31b25f</WebsiteID>
          <ContactID>89eab9c7-a2c9-bfd7-e9e9-421b924a56f0</ContactID>
          <MergedIntoContactID>9b0971bd-bab6-f888-9cfc-ab6ba035b9c3</MergedIntoContactID>
          <DateMerged>2011-03-08T21:22:30.890Z</DateMerged>
        </MergedContact>
      </MergedContacts>
      <RecordCount>1</RecordCount>
    </SearchMergedContactsReturn>
  </SearchMergedContactsResponse>
</soapenv:Body>
</soapenv:Envelope>   

Page Top