Hi I am trying to create a contacts in a folder similar to the default Address book. I am using the below SOAP Envelop to do it.
Code:
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
<context xmlns="urn:zimbra">
<authToken>
0_3272262ab62f529a5ecbecffc0028bb8b13d3afe_69643d33363a37323037613338302d383639312d343266632d613761392d6536376530383265613736383b6578703d337373832343831323b
</authToken>
<sessionId id="85">85</sessionId>
</context>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<CreateFolderRequest xmlns="urn:zimbraMail">
<folder fie="1" l="7" name="SugarContacts" />
</CreateFolderRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Below is the response SOAP Message
Code:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<context xmlns="urn:zimbra">
<sessionId id="85">85</sessionId>
<change token="1100" />
</context>
</soap:Header>
<soap:Body>
<CreateFolderResponse xmlns="urn:zimbraMail">
<folder id="261" name="SugarContacts" l="7" />
</CreateFolderResponse>
</soap:Body>
</soap:Envelope>
When I login through Zimbra client I cannot see the folder SugarContacts created within Contacts folder or AddressBook. If anyone has faced this issue and has solution please get back to ASAP.