# ListContactList

#### Description

Function listing basic contact configuration items / lists.

#### Important Parameters

<table border="1" id="bkmrk-list-contacttype-ind" style="border-collapse: collapse; width: 100%;"><tbody><tr><td style="width: 50%;">list</td><td style="width: 50%;">contacttype

industry

nationality

companylegalform

category

department

position

addresstype

relationtype\_p (person)

relationtype\_c (company)

</td></tr><tr><td style="width: 50%;">treeHandle</td><td style="width: 50%;">either use "node" attribute from [<u>Login</u>](mks://localhost/en/devel/API/Functions_Examples/Login_Example "en/devel/API/Functions Examples/Login Example") function, DEFAULTS-&gt;DEFAULT with "ident" CONTACTCONFIGNODE or use attrib **useDefaultTreeHandle** = true

</td></tr><tr><td style="width: 50%;"> </td><td style="width: 50%;"> </td></tr></tbody></table>

#### Request Example

```XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://atollon.com/enterprise/wsdl">
   <soapenv:Header/>
   <soapenv:Body>
      <wsdl:ListContactList>
         <server>atollon</server>
         <session>4A...04</session>
         <treeHandle>1685000</treeHandle>
         <list>contacttype</list>
      </wsdl:ListContactList>
   </soapenv:Body>
</soapenv:Envelope>
```

#### Response Example

```XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <atollon:ListContactListResponse xmlns:atollon="http://iterity.com/enterprise/wsdl">
         <result>OK</result>
         <time>0.01314497</time>
         <count>12</count>
         <ITEM>
            <id>1883000</id>
            <name>E-mail (other)</name>
            <type>1</type>
         </ITEM>
         <ITEM>
            <id>1884000</id>
            <name>E-mail (personal)</name>
            <type>1</type>
         </ITEM>
         <ITEM>
            <id>1885000</id>
            <name>E-mail (work)</name>
            <type>1</type>
         </ITEM>
         ...
      </atollon:ListContactListResponse>
   </soapenv:Body>
</soapenv:Envelope>
```