TOP

RemoveContactTypeFromContact()

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 RemoveContactTypeFromContact() function to remove a Contact Type from a Contact. Required fields are indicated by a '*'

Parameters:

Attribute Data Type Default Description
ContactID UUID*   UUID of the Vin65 Contact
ContactTypeID UUID*   UUID of the Vin65 Contact Type

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>
  <RemoveContactTypeFromContact>
    <Request>
      <Security>
        <Username>//Your Username//</Username>
        <Password>//Your Password//</Password>
      </Security>
      <ContactID>71e67a5c-2264-112b-b1f4-a6d602ad8bb4</ContactID>
      <ContactTypeID>43e15e63-2264-112b-b157-70b1 cc864227</ContactTypeID>
    </Request>
</RemoveContactTypeFromContact>
</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>
  <RemoveContactTypeFromContactResponse>
    <RemoveContactTypeFromContactReturn>
      <Errors></Errors>
      <IsSuccessful>true</IsSuccessful>
      <RecordCount>1</RecordCount>
    </RemoveContactTypeFromContactReturn>
  </RemoveContactTypeFromContactResponse>
</soapenv:Body>
</soapenv:Envelope> 

Page Top