


 



<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docwiki.cisco.com/w/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;feed=atom&amp;action=history</id>
		<title>Cisco Unity Connection Provisioning Interface (CUPI) API -- Enabling Single Inbox Example - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;action=history"/>
		<updated>2013-05-21T11:09:15Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;diff=36313&amp;oldid=prev</id>
		<title>Gscorbin: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;diff=36313&amp;oldid=prev"/>
				<updated>2010-12-14T00:05:07Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 00:05, 14 December 2010&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Gscorbin</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;diff=36312&amp;oldid=prev</id>
		<title>Juliew at 22:34, 13 December 2010</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Cisco_Unity_Connection_Provisioning_Interface_(CUPI)_API_--_Enabling_Single_Inbox_Example&amp;diff=36312&amp;oldid=prev"/>
				<updated>2010-12-13T22:34:03Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''Links to Other API pages:''' [[Cisco_Unity_Connection_APIs]]&lt;br /&gt;
{| align=&amp;quot;right&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|align=&amp;quot;center&amp;quot;|'''CUPI Guide Contents'''&lt;br /&gt;
|-&lt;br /&gt;
|[[Cisco Unity Connection Provisioning Interface (CUPI) API|API Overview ]]&amp;lt;br&amp;gt;[[Cisco Unity Connection Provisioning Interface (CUPI) API -- Index of All CUPI Documentation|Index of All CUPI Documentation]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Enabling Single Inbox for a User ==&lt;br /&gt;
&lt;br /&gt;
This document explains how to use the API to enable the Single Inbox feature for a user. The API being used in all these examples is CUPI.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The Single Inbox feature is available only in Cisco Unity Connection 8.5 and later. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Update Class of Service ==&lt;br /&gt;
&lt;br /&gt;
To allow a user to use the Single Inbox feature, the Class of Service must allow it. The '''AccessIMAP''' field controls access to the Single Inbox feature. This field must be set to &amp;quot;true.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Here is an example of modifying an existing Class of Service to allow access to the Single Inbox feature:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT /vmrest/coses/&amp;lt;cosobjectid&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;Cos&amp;gt;&lt;br /&gt;
  &amp;lt;AccessIMAP&amp;gt;true&amp;lt;/AccessIMAP&amp;gt;&lt;br /&gt;
&amp;lt;/Cos&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Create or Update Unified Messaging Service ==&lt;br /&gt;
&lt;br /&gt;
Unified Messaging Services cannot currently be created or updated through the API. Any configuration changes will need to be done through another interface such as Cisco Unity Connection Administration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Create or Update Unified Messaging Accounts ==&lt;br /&gt;
&lt;br /&gt;
To enable the Single Inbox feature for a user, the user must have a correctly configured Unified Messaging Account in which the '''EnableMailboxSynCapability''' field is set to &amp;quot;true.&amp;quot; Note that prior to Connection 8.5, Unified Messaging Accounts were referred to as External Service Accounts, and this is how the API refers to them.&lt;br /&gt;
&lt;br /&gt;
Here is an example of modifying an existing Unified Messaging Account to enable the Single Inbox feature:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT /vmrest/users/&amp;lt;userobjectid&amp;gt;/externalserviceaccounts/&amp;lt;externalserviceaccountobjectid&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;ExternalServiceAccount&amp;gt;&lt;br /&gt;
  &amp;lt;EnableMailboxSynchCapability&amp;gt;true&amp;lt;/EnableMailboxSynchCapability&amp;gt;&lt;br /&gt;
&amp;lt;/ExternalServiceAccount&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Cisco Unity Connection Provisioning Interface (CUPI) API]]&lt;/div&gt;</summary>
		<author><name>Juliew</name></author>	</entry>

	</feed>