cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
10286
Views
3
Helpful
8
Replies

listPhone AXL API call

snikamvyopta
Level 1
Level 1

I am new to CUCM AXL APIs and currently using SoapUI 5.0 for testing CUCM AXL APIs.

I was able to enable AXL on CUCM and have also verified that, the AXL Web Service is working and accepting requests.  I was able to get a response for an API such as getCCMVersion.

But for few APIs, where it asks for a name in searchCriteria, I am not able to get any response back. For a name, I specified a name which I see on CUCM, which in our case is 'cucmdev'. In the following schema documentation, it mentions: "The device name,using only URL-friendly characters".

What am I missing here?

Following is a schema I am referring to:

https://developer.cisco.com/media/axl-schema-10-0/AXLSoap.html

Also, there are most of the APIs which have optional attributes to be mentioned in the API request, so not specifying them at all should be fine, right? What does these means: sequence="?" ctiid="?" uuid="?"

1 Accepted Solution

Accepted Solutions

jocreed
Cisco Employee
Cisco Employee

Are you using AXL version 10.0 or 9.1? in your original post you had mentioned the 10.0 schema but your later examples seem to reflect 9.1.  Either way, here is an example (10.0 AXL version) of a listphone request and response that you would want to try.  I only used some of the return tags to cut down on length.  If you want all phone information remove the <returntags></returnTags> and all of the elements within the tags.  Let either dstaudt or myself know if you have any more trouble.  See below...

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.0">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:listPhone>

         <searchCriteria>

            <!--Optional:-->

            <!--<name>SEP%</name>-->

            <devicePoolName>Default</devicePoolName>

         </searchCriteria>

         <returnedTags>

           <name></name>

            <model></model>

            <ownerUserName></ownerUserName>

         </returnedTags>

      </ns:listPhone>

   </soapenv:Body>

</soapenv:Envelope>

Response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

   <soap:Body>

      <ns2:listPhoneResponse xmlns:ns2="http://www.cisco.com/AXL/API/10.0">

         <return>

            <phone uuid="{93F3C717-300E-6B22-C4D1-C44A60A983C5}">

               <name>SEP7E7A9194BC09</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

            <phone uuid="{9C65379D-2F16-0788-3DA9-50FEF876C622}">

               <name>SEP5475D0785AD4</name>

               <model>Cisco 7926</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{4AD1B45A-14B0-E6E8-3776-063455E08D55}">

               <name>IPCMRAEU5UCM5X7</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{E6FC914D-BFD9-CF8B-DF54-EDF4166FA2E9}">

               <name>SEP111111111123</name>

               <model>Ascom IP-DECT Device</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

            <phone uuid="{DD25D49D-CDCF-F71C-DC59-7734D04F8212}">

               <name>SYN121212121212</name>

               <model>Syn-Apps Virtual Phone</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{4F343CE1-6CFF-F2DF-89CD-7A92CE7AB6BD}">

               <name>SEP343434343434</name>

               <model>IPTrade TAD</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{496924BF-D324-4C24-164D-AFB160E85227}">

               <name>SEP454545454545</name>

               <model>IPTrade TAD</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{6A4F857A-A4E0-2A8A-EFF2-6CA8E613FFA1}">

               <name>SEP567567567567</name>

               <model>Cisco DX650</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{7C3F04E1-09B0-4169-A498-FA166C3536C0}">

               <name>CSFNPETRELEB54D</name>

               <model>Cisco Unified Client Services Framework</model>

               <ownerUserName uuid="{1F432427-E66B-071B-F231-46330E5CCB25}">nicholas</ownerUserName>

            </phone>

            <phone uuid="{BCD3D84F-AE8C-7A97-D555-DCB326D0DEEB}">

               <name>SEP54EE7510D1D0</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{272AB563-5A32-A979-B432-68F6FFF44EDD}">

               <name>SEP333333333333</name>

               <model>Cisco 8861</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

         </return>

      </ns2:listPhoneResponse>

   </soap:Body>

</soap:Envelope>

<!--This API has been processed by GAXL not AXL-->

View solution in original post

8 Replies 8

dstaudt
Cisco Employee
Cisco Employee

Note, the name given to listPhone should be the devicename of the phone itself - typically of the form 'SEP[MAC address]' for most Cisco phones.  If you are looking to get a list of phones associated to a particular user, try the getUser request.

Hi dstaudt,

For some reason, none of the APIs except the one I mentioned works for me.

For example: when I tried getUser following is the response:

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/9.1">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:getUser sequence="?">

         <!--You have a CHOICE of the next 2 items at this level-->

         <userid>vyopta</userid>

      </ns:getUser>

   </soapenv:Body>

</soapenv:Envelope>

Response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">

   <soapenv:Body>

      <soapenv:Fault>

         <faultcode>soapenv:Server</faultcode>

         <faultstring>Item not valid: The specified User was not found</faultstring>

         <detail>

            <axlError>

               <axlcode>5007</axlcode>

               <axlmessage>Item not valid: The specified User was not found</axlmessage>

               <request>getUser</request>

            </axlError>

         </detail>

      </soapenv:Fault>

   </soapenv:Body>

</soapenv:Envelope>

I would note that you have 'sequence="?"', where "?" should be a number (normally incrementing, so you app can match requests with responses), however I believe AXL will just ignore this.

From the request/response, it seems that the end-user with user id of 'vyopta' simply doesn't exist in UCM.  Can you confirm?

vyopta user exists in CUCM and I have enabled Standard AXL API access role for this user as well.

dstaudt, Could you please give me details on what APIs we should use, to get all the phone related data from CUCM AXL APIs?

Also, any good documentation source will be really helpful.

Hi dstaudt,

Cisco AXL API Demo - YouTube

I found this video on Youtube. He is making a ListPhone API call with two parameters- Default, AXLproxy.PhoneSearchKey.DevicePoolName at the time mark 4:08 in the video.

This is exactly what I want to do. Could you please let me know, what these two parameters he is providing for?

This is the default request that comes in SoapUI.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/9.1">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:listPhone sequence="?">

         <searchCriteria>

            <!--Optional:-->

            <name>?</name>

            <!--Optional:-->

            <description>?</description>

            <!--Optional:-->

            <protocol>?</protocol>

            <!--Optional:-->

            <callingSearchSpaceName>?</callingSearchSpaceName>

            <!--Optional:-->

            <devicePoolName>?</devicePoolName>

            <!--Optional:-->

            <securityProfileName>?</securityProfileName>

         </searchCriteria>

         <returnedTags ctiid="?" uuid="?">

            <!--Optional:-->

            <name>?</name>

            <!--Optional:-->

            <description>?</description>

            <!--Optional:-->

            <product>?</product>

            <!--Optional:-->

            <model>?</model>

            <!--Optional:-->

            <class>?</class>

            <!--Optional:-->

            <protocol>?</protocol>

            <!--Optional:-->

            <protocolSide>?</protocolSide>

            <!--Optional:-->

            <callingSearchSpaceName uuid="?">?</callingSearchSpaceName>

            <!--Optional:-->

            <devicePoolName uuid="?">?</devicePoolName>

            <!--Optional:-->

            <commonDeviceConfigName uuid="?">?</commonDeviceConfigName>

            <!--Optional:-->

            <commonPhoneConfigName uuid="?">?</commonPhoneConfigName>

            <!--Optional:-->

            <networkLocation>?</networkLocation>

            <!--Optional:-->

            <locationName uuid="?">?</locationName>

            <!--Optional:-->

            <mediaResourceListName uuid="?">?</mediaResourceListName>

            <!--Optional:-->

            <networkHoldMohAudioSourceId>?</networkHoldMohAudioSourceId>

            <!--Optional:-->

            <userHoldMohAudioSourceId>?</userHoldMohAudioSourceId>

            <!--Optional:-->

            <automatedAlternateRoutingCssName uuid="?">?</automatedAlternateRoutingCssName>

            <!--Optional:-->

            <aarNeighborhoodName uuid="?">?</aarNeighborhoodName>

            <!--Optional:-->

            <loadInformation special="?">?</loadInformation>

            <!--Optional:-->

            <traceFlag>?</traceFlag>

            <!--Optional:-->

            <mlppIndicationStatus>?</mlppIndicationStatus>

            <!--Optional:-->

            <preemption>?</preemption>

            <!--Optional:-->

            <useTrustedRelayPoint>?</useTrustedRelayPoint>

            <!--Optional:-->

            <retryVideoCallAsAudio>?</retryVideoCallAsAudio>

            <!--Optional:-->

            <securityProfileName uuid="?">?</securityProfileName>

            <!--Optional:-->

            <sipProfileName uuid="?">?</sipProfileName>

            <!--Optional:-->

            <cgpnTransformationCssName uuid="?">?</cgpnTransformationCssName>

            <!--Optional:-->

            <useDevicePoolCgpnTransformCss>?</useDevicePoolCgpnTransformCss>

            <!--Optional:-->

            <geoLocationName uuid="?">?</geoLocationName>

            <!--Optional:-->

            <geoLocationFilterName uuid="?">?</geoLocationFilterName>

            <!--Optional:-->

            <sendGeoLocation>?</sendGeoLocation>

            <!--Optional:-->

            <numberOfButtons>?</numberOfButtons>

            <!--Optional:-->

            <phoneTemplateName uuid="?">?</phoneTemplateName>

            <!--Optional:-->

            <primaryPhoneName uuid="?">?</primaryPhoneName>

            <!--Optional:-->

            <ringSettingIdleBlfAudibleAlert>?</ringSettingIdleBlfAudibleAlert>

            <!--Optional:-->

            <ringSettingBusyBlfAudibleAlert>?</ringSettingBusyBlfAudibleAlert>

            <!--Optional:-->

            <userLocale>?</userLocale>

            <!--Optional:-->

            <networkLocale>?</networkLocale>

            <!--Optional:-->

            <idleTimeout>?</idleTimeout>

            <!--Optional:-->

            <authenticationUrl>?</authenticationUrl>

            <!--Optional:-->

            <directoryUrl>?</directoryUrl>

            <!--Optional:-->

            <idleUrl>?</idleUrl>

            <!--Optional:-->

            <informationUrl>?</informationUrl>

            <!--Optional:-->

            <messagesUrl>?</messagesUrl>

            <!--Optional:-->

            <proxyServerUrl>?</proxyServerUrl>

            <!--Optional:-->

            <servicesUrl>?</servicesUrl>

            <!--Optional:-->

            <softkeyTemplateName uuid="?">?</softkeyTemplateName>

            <!--Optional:-->

            <loginUserId>?</loginUserId>

            <!--Optional:-->

            <defaultProfileName uuid="?">?</defaultProfileName>

            <!--Optional:-->

            <enableExtensionMobility>?</enableExtensionMobility>

            <!--Optional:-->

            <currentProfileName uuid="?">?</currentProfileName>

            <!--Optional:-->

            <loginTime>?</loginTime>

            <!--Optional:-->

            <loginDuration>?</loginDuration>

            <!--Optional:-->

            <currentConfig>

               <!--Optional:-->

               <userHoldMohAudioSourceId>?</userHoldMohAudioSourceId>

               <!--Optional:-->

               <phoneTemplateName uuid="?">?</phoneTemplateName>

               <!--Optional:-->

               <mlppDomainId>?</mlppDomainId>

               <!--Optional:-->

               <mlppIndicationStatus>?</mlppIndicationStatus>

               <!--Optional:-->

               <preemption>?</preemption>

               <!--Optional:-->

               <softkeyTemplateName uuid="?">?</softkeyTemplateName>

               <!--Optional:-->

               <ignorePresentationIndicators>?</ignorePresentationIndicators>

               <!--Optional:-->

               <singleButtonBarge>?</singleButtonBarge>

               <!--Optional:-->

               <joinAcrossLines>?</joinAcrossLines>

               <!--Optional:-->

               <callInfoPrivacyStatus>?</callInfoPrivacyStatus>

               <!--Optional:-->

               <dndStatus>?</dndStatus>

               <!--Optional:-->

               <dndRingSetting>?</dndRingSetting>

               <!--Optional:-->

               <dndOption>?</dndOption>

               <!--Optional:-->

               <alwaysUsePrimeLine>?</alwaysUsePrimeLine>

               <!--Optional:-->

               <alwaysUsePrimeLineForVoiceMessage>?</alwaysUsePrimeLineForVoiceMessage>

               <!--Optional:-->

               <emccCallingSearchSpaceName uuid="?">?</emccCallingSearchSpaceName>

               <!--Optional:-->

               <deviceName>?</deviceName>

               <!--Optional:-->

               <model>?</model>

               <!--Optional:-->

               <product>?</product>

               <!--Optional:-->

               <deviceProtocol>?</deviceProtocol>

               <!--Optional:-->

               <class>?</class>

               <!--Optional:-->

               <addressMode>?</addressMode>

               <!--Optional:-->

               <allowAutoConfig>?</allowAutoConfig>

               <!--Optional:-->

               <remoteSrstOption>?</remoteSrstOption>

               <!--Optional:-->

               <remoteSrstIp>?</remoteSrstIp>

               <!--Optional:-->

               <remoteSrstPort>?</remoteSrstPort>

               <!--Optional:-->

               <remoteSipSrstIp>?</remoteSipSrstIp>

               <!--Optional:-->

               <remoteSipSrstPort>?</remoteSipSrstPort>

               <!--Optional:-->

               <geolocationInfo>?</geolocationInfo>

            </currentConfig>

            <!--Optional:-->

            <singleButtonBarge>?</singleButtonBarge>

            <!--Optional:-->

            <joinAcrossLines>?</joinAcrossLines>

            <!--Optional:-->

            <builtInBridgeStatus>?</builtInBridgeStatus>

            <!--Optional:-->

            <callInfoPrivacyStatus>?</callInfoPrivacyStatus>

            <!--Optional:-->

            <hlogStatus>?</hlogStatus>

            <!--Optional:-->

            <ownerUserName uuid="?">?</ownerUserName>

            <!--Optional:-->

            <ignorePresentationIndicators>?</ignorePresentationIndicators>

            <!--Optional:-->

            <packetCaptureMode>?</packetCaptureMode>

            <!--Optional:-->

            <packetCaptureDuration>?</packetCaptureDuration>

            <!--Optional:-->

            <subscribeCallingSearchSpaceName uuid="?">?</subscribeCallingSearchSpaceName>

            <!--Optional:-->

            <rerouteCallingSearchSpaceName uuid="?">?</rerouteCallingSearchSpaceName>

            <!--Optional:-->

            <allowCtiControlFlag>?</allowCtiControlFlag>

            <!--Optional:-->

            <presenceGroupName uuid="?">?</presenceGroupName>

            <!--Optional:-->

            <unattendedPort>?</unattendedPort>

            <!--Optional:-->

            <requireDtmfReception>?</requireDtmfReception>

            <!--Optional:-->

            <rfc2833Disabled>?</rfc2833Disabled>

            <!--Optional:-->

            <certificateOperation>?</certificateOperation>

            <!--Optional:-->

            <authenticationMode>?</authenticationMode>

            <!--Optional:-->

            <keySize>?</keySize>

            <!--Optional:-->

            <authenticationString>?</authenticationString>

            <!--Optional:-->

            <certificateStatus>?</certificateStatus>

            <!--Optional:-->

            <upgradeFinishTime>?</upgradeFinishTime>

            <!--Optional:-->

            <deviceMobilityMode>?</deviceMobilityMode>

            <!--Optional:-->

            <roamingDevicePoolName uuid="?">?</roamingDevicePoolName>

            <!--Optional:-->

            <remoteDevice>?</remoteDevice>

            <!--Optional:-->

            <dndOption>?</dndOption>

            <!--Optional:-->

            <dndRingSetting>?</dndRingSetting>

            <!--Optional:-->

            <dndStatus>?</dndStatus>

            <!--Optional:-->

            <isActive>?</isActive>

            <!--Optional:-->

            <isDualMode>?</isDualMode>

            <!--Optional:-->

            <mobilityUserIdName uuid="?">?</mobilityUserIdName>

            <!--Optional:-->

            <phoneSuite>?</phoneSuite>

            <!--Optional:-->

            <phoneServiceDisplay>?</phoneServiceDisplay>

            <!--Optional:-->

            <isProtected>?</isProtected>

            <!--Optional:-->

            <mobileSmartClientProfileName uuid="?">?</mobileSmartClientProfileName>

            <!--Optional:-->

            <mtpRequired>?</mtpRequired>

            <!--Optional:-->

            <mtpPreferedCodec>?</mtpPreferedCodec>

            <!--Optional:-->

            <dialRulesName uuid="?">?</dialRulesName>

            <!--Optional:-->

            <sshUserId>?</sshUserId>

            <!--Optional:-->

            <digestUser>?</digestUser>

            <!--Optional:-->

            <outboundCallRollover>?</outboundCallRollover>

            <!--Optional:-->

            <hotlineDevice>?</hotlineDevice>

            <!--Optional:-->

            <secureInformationUrl>?</secureInformationUrl>

            <!--Optional:-->

            <secureDirectoryUrl>?</secureDirectoryUrl>

            <!--Optional:-->

            <secureMessageUrl>?</secureMessageUrl>

            <!--Optional:-->

            <secureServicesUrl>?</secureServicesUrl>

            <!--Optional:-->

            <secureAuthenticationUrl>?</secureAuthenticationUrl>

            <!--Optional:-->

            <secureIdleUrl>?</secureIdleUrl>

            <!--Optional:-->

            <alwaysUsePrimeLine>?</alwaysUsePrimeLine>

            <!--Optional:-->

            <alwaysUsePrimeLineForVoiceMessage>?</alwaysUsePrimeLineForVoiceMessage>

            <!--Optional:-->

            <featureControlPolicy uuid="?">?</featureControlPolicy>

            <!--Optional:-->

            <deviceTrustMode>?</deviceTrustMode>

            <!--Optional:-->

            <earlyOfferSupportForVoiceCall>?</earlyOfferSupportForVoiceCall>

            <!--Optional:-->

            <requireThirdPartyRegistration>?</requireThirdPartyRegistration>

            <!--Optional:-->

            <blockIncomingCallsWhenRoaming>?</blockIncomingCallsWhenRoaming>

            <!--Optional:-->

            <homeNetworkId>?</homeNetworkId>

            <!--Optional:-->

            <AllowPresentationSharingUsingBfcp>?</AllowPresentationSharingUsingBfcp>

            <!--Optional:-->

            <requireOffPremiseLocation>?</requireOffPremiseLocation>

            <!--Optional:-->

            <userlocale>?</userlocale>

         </returnedTags>

         <!--Optional:-->

         <skip>?</skip>

         <!--Optional:-->

         <first>?</first>

      </ns:listPhone>

   </soapenv:Body>

</soapenv:Envelope>

My guess would be that the 'vyopta' user has been created as an 'Application User' rather than as an 'End User'.  <getApplicationUser> is used for the former, <getUser> for the latter.

From the video it looks like the <listPhones> request is being created with:

<searchCriteria>

  <devicePoolName>Default</devicePoolName>

</searchCriteria>

jocreed
Cisco Employee
Cisco Employee

Are you using AXL version 10.0 or 9.1? in your original post you had mentioned the 10.0 schema but your later examples seem to reflect 9.1.  Either way, here is an example (10.0 AXL version) of a listphone request and response that you would want to try.  I only used some of the return tags to cut down on length.  If you want all phone information remove the <returntags></returnTags> and all of the elements within the tags.  Let either dstaudt or myself know if you have any more trouble.  See below...

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.0">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:listPhone>

         <searchCriteria>

            <!--Optional:-->

            <!--<name>SEP%</name>-->

            <devicePoolName>Default</devicePoolName>

         </searchCriteria>

         <returnedTags>

           <name></name>

            <model></model>

            <ownerUserName></ownerUserName>

         </returnedTags>

      </ns:listPhone>

   </soapenv:Body>

</soapenv:Envelope>

Response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

   <soap:Body>

      <ns2:listPhoneResponse xmlns:ns2="http://www.cisco.com/AXL/API/10.0">

         <return>

            <phone uuid="{93F3C717-300E-6B22-C4D1-C44A60A983C5}">

               <name>SEP7E7A9194BC09</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

            <phone uuid="{9C65379D-2F16-0788-3DA9-50FEF876C622}">

               <name>SEP5475D0785AD4</name>

               <model>Cisco 7926</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{4AD1B45A-14B0-E6E8-3776-063455E08D55}">

               <name>IPCMRAEU5UCM5X7</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{E6FC914D-BFD9-CF8B-DF54-EDF4166FA2E9}">

               <name>SEP111111111123</name>

               <model>Ascom IP-DECT Device</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

            <phone uuid="{DD25D49D-CDCF-F71C-DC59-7734D04F8212}">

               <name>SYN121212121212</name>

               <model>Syn-Apps Virtual Phone</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{4F343CE1-6CFF-F2DF-89CD-7A92CE7AB6BD}">

               <name>SEP343434343434</name>

               <model>IPTrade TAD</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{496924BF-D324-4C24-164D-AFB160E85227}">

               <name>SEP454545454545</name>

               <model>IPTrade TAD</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{6A4F857A-A4E0-2A8A-EFF2-6CA8E613FFA1}">

               <name>SEP567567567567</name>

               <model>Cisco DX650</model>

               <ownerUserName uuid="{DAF3A2C3-3D7E-2611-842A-7B9582C27C24}">supadhya</ownerUserName>

            </phone>

            <phone uuid="{7C3F04E1-09B0-4169-A498-FA166C3536C0}">

               <name>CSFNPETRELEB54D</name>

               <model>Cisco Unified Client Services Framework</model>

               <ownerUserName uuid="{1F432427-E66B-071B-F231-46330E5CCB25}">nicholas</ownerUserName>

            </phone>

            <phone uuid="{BCD3D84F-AE8C-7A97-D555-DCB326D0DEEB}">

               <name>SEP54EE7510D1D0</name>

               <model>Cisco IP Communicator</model>

               <ownerUserName/>

            </phone>

            <phone uuid="{272AB563-5A32-A979-B432-68F6FFF44EDD}">

               <name>SEP333333333333</name>

               <model>Cisco 8861</model>

               <ownerUserName uuid="{EA799838-0615-1814-3847-40BE09BF6D03}">adrienne</ownerUserName>

            </phone>

         </return>

      </ns2:listPhoneResponse>

   </soap:Body>

</soap:Envelope>

<!--This API has been processed by GAXL not AXL-->

Thanks Kristopher!

I am having issues in  getting responses for other few APIs. I will open another discussion for them.

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: