TOP

GetContactType()

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 GetContactType() function to get a single contact type. Required fields are indicated by a '*'

Parameters:

Attribute Data Type Default Description
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> 
  <GetContactType>
    <Request>
      <Security>
        <Username>//Your Username//</Username>
        <Password>//Your Password//</Password>
      </Security>
      <ContactTypeID>ef0db0d3-fc40-c0e1-1faf-25e7d0015c1b</ContactTypeID>
    </Request>
  </GetContactType>
</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>
  <GetContactTypeResponse>
    <GetContactTypeReturn> 
      <Errors></Errors>
      <IsSuccessful>true</IsSuccessful>
      <ContactType>
        <ContactType>200 Club</ContactType>
        <ContactTypeID>ef0db0d3-fc40-c0e1-1faf-25e7d0015c1b</ContactTypeID>
        <DateAdded>2011-03-08T21:22:30.890Z</DateAdded>
        <DateModified>2011-04-19T16:50:12.507Z</DateModified>
        <IsPublic>1</IsPublic>
        <WebsiteID>66272648-1e0b-4e34-f09b-81477a31b25f</WebsiteID>
      </ContactType>
      <RecordCount>1</RecordCount>
    </GetContactTypeReturn>
  </GetContactTypeResponse>
</soapenv:Body>
</soapenv:Envelope>  

Page Top