


 



<?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_--_Caller_Input_Keys&amp;feed=atom&amp;action=history</id>
		<title>Cisco Unity Connection Provisioning Interface (CUPI) API -- Caller Input Keys - 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_--_Caller_Input_Keys&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_--_Caller_Input_Keys&amp;action=history"/>
		<updated>2013-05-18T12:42:00Z</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_--_Caller_Input_Keys&amp;diff=36327&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_--_Caller_Input_Keys&amp;diff=36327&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_--_Caller_Input_Keys&amp;diff=36326&amp;oldid=prev</id>
		<title>Juliew at 22:41, 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_--_Caller_Input_Keys&amp;diff=36326&amp;oldid=prev"/>
				<updated>2010-12-13T22:41:11Z</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;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== About Caller Input Keys ==&lt;br /&gt;
&lt;br /&gt;
(Note that this content is applicable to Cisco Unity Connection 7.1(3) and later)&lt;br /&gt;
&lt;br /&gt;
In order to use the CUPI API to update caller input keys, you need to determine the object ID of the call handler whose caller input key you want to change.&lt;br /&gt;
&lt;br /&gt;
To make an update to caller input keys for a user, you need to determine the object ID of the user's call handler. Every user who has caller input keys has a call handler. When looking at the user data returned from the following GET, the object ID is under the element &amp;lt;CallHandlerObjectId&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
GET https://&amp;lt;server&amp;gt;/vmrest/users/&amp;lt;userobjectid&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When you have determined the object ID of the call handler that you want to change, you can do any of the following operations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Ignore ==&lt;br /&gt;
&lt;br /&gt;
The default setting of most keys is &amp;quot;Ignore.&amp;quot; To set a key to ignore, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT  https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;0&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field is a custom type used to determine at a basic level what the caller input key is going to do. The 0 value denotes that this key should be ignored.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Hang Up ==&lt;br /&gt;
&lt;br /&gt;
To set a key to hang up, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT  https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;1&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 1 denotes that this key should terminate the call.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Restart Greeting ==&lt;br /&gt;
&lt;br /&gt;
To set a key to restart the greeting, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT  https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;6&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 6 denotes that this key should restart playback of the greeting from the beginning.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Route from Next Call Routing Rule ==&lt;br /&gt;
&lt;br /&gt;
To set a key to route the call starting from the next call routing rule, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT  https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;8&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 8 denotes that this key should route the call starting from the next call routing rule.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Skip Greeting ==&lt;br /&gt;
&lt;br /&gt;
To set a key to skip the greeting, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT  https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;5&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 5 denotes that this key should skip the remainder of the greeting and take the caller directly to the after greeting action.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Take a Message ==&lt;br /&gt;
&lt;br /&gt;
To set a key to take a message, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;4&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 4 denotes that this key should prompt the caller to record a message.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to an Alternate Contact Number ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to an alternate contact number, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;7&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TransferNumber&amp;gt;number to transfer to&amp;lt;/TransferNumber&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 7 denotes that this key should transfer the caller to an alternate contact number. The TransferNumber is the number that the caller will be release-transferred to. Note that including a TransferNumber is optional; if you choose not to include a TransferNumber, users can configure their own alternate contact numbers by phone (by providing a number to transfers caller to).&lt;br /&gt;
&lt;br /&gt;
Currently, the CUPI API does not allow you to set the TransferNumber to an empty string. Therefore, if you set the TransferNumber, you can change it later to a different number, but you cannot leave it empty. In addition, the CUPI API does not allow read or write access to which type of transfer the alternate contact number uses (release transfer vs. supervised transfer).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to a User or a Call Handler ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to a user or a call handler, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;PHTransfer&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;TargetHandlerObjectId&amp;gt;05d9e169-5c87-4415-aaed-c58a14816c8d&amp;lt;/TargetHandlerObjectId&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Action field of 2 denotes that this key should transfer the caller to another conversation. This is used to transfer callers to other objects, or to send callers to other conversations such as the system transfer conversation.&lt;br /&gt;
&lt;br /&gt;
The TargetConversation should be set to PHTransfer if you want to transfer to the call handler in question. If you want to have the call go directly the call handler greeting, set it to PHGreeting instead.&lt;br /&gt;
&lt;br /&gt;
The TargetHandlerObjectId is the object ID of the call handler that you want the key to transfer the caller to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to an Interview Handler ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to an interview handler, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;PHInterview&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;TargetHandlerObjectId&amp;gt;interview handler object id&amp;lt;/TargetHandlerObjectId&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The TargetConversation should be set to PHInterview. The TargetHandlerObjectId is the object ID of the interview handler that you want to the caller input key to go to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to a Directory Handler ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to a directory handler, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;AD&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;TargetHandlerObjectId&amp;gt;object id of directory handler&amp;lt;/TargetHandlerObjectId&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The TargetConversation should be set to AD. The TargetHandlerObjectId is the object ID of the directory handler that you want to the caller input key to go to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to the Broadcast Message Administrator Conversation ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to the Broadcast Message Administrator conversation, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;BroadcastMessageAdministrator&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to the Caller System Transfer Conversation ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to the Caller System Transfer conversation, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;SystemTransfer&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to the Greetings Administrator Conversation ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to the Greetings Administrator conversation, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;GreetingsAdministrator&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to the Sign-In Conversation ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to the sign-in conversation, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;SubSignIn&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Transfer to the User System Transfer Conversation ==&lt;br /&gt;
&lt;br /&gt;
To transfer a caller to the subscriber system transfer conversation, do the following PUT request:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PUT https://&amp;lt;server&amp;gt;/vmrest/handlers/callhandlers/&amp;lt;callhandlerobjectid&amp;gt;/menuentries/&amp;lt;key&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;MenuEntry&amp;gt;&lt;br /&gt;
&amp;lt;Action&amp;gt;2&amp;lt;/Action&amp;gt;&lt;br /&gt;
&amp;lt;TargetConversation&amp;gt;SubSysTransfer&amp;lt;/TargetConversation&amp;gt;&lt;br /&gt;
&amp;lt;/MenuEntry&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>