<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re:Where to find CUCM AXL complete reference guide for all API in Management</title>
    <link>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686408#M3946</link>
    <description>Thanks for the reply.&lt;BR /&gt;I already have the schema, which lists all the elements, and I understand that.&lt;BR /&gt;What I do not have is a document that lists all valid values for querying an element, for example, in listPhone API, what are all the valid values for the element in Search Criteria.&lt;BR /&gt;Thanks.&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Sep 2022 20:49:05 GMT</pubDate>
    <dc:creator>Mark Dugas</dc:creator>
    <dc:date>2022-09-13T20:49:05Z</dc:date>
    <item>
      <title>Where to find CUCM AXL complete reference guide for all API</title>
      <link>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686375#M3944</link>
      <description>&lt;P&gt;The AXL Developer Guide page (&lt;A href="https://developer.cisco.com/docs/axl/#!axl-developer-guide/overview" target="_blank" rel="noopener"&gt;AXL Developer Guide - AXL - Document - Cisco DevNet&lt;/A&gt;) offers a few basic examples, but where is the complete documentation for all the API's - such as valid values for a device class for the listPhone API?&amp;nbsp; I have been unable to find it.&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 19:18:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686375#M3944</guid>
      <dc:creator>Mark Dugas</dc:creator>
      <dc:date>2022-09-13T19:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find CUCM AXL complete reference guide for all API</title>
      <link>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686401#M3945</link>
      <description>&lt;P&gt;See the 'Schema Reference' for this kind of detail: &lt;A href="https://developer.cisco.com/docs/axl-schema-reference/" target="_blank"&gt;https://developer.cisco.com/docs/axl-schema-reference/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 20:16:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686401#M3945</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2022-09-13T20:16:18Z</dc:date>
    </item>
    <item>
      <title>Re:Where to find CUCM AXL complete reference guide for all API</title>
      <link>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686408#M3946</link>
      <description>Thanks for the reply.&lt;BR /&gt;I already have the schema, which lists all the elements, and I understand that.&lt;BR /&gt;What I do not have is a document that lists all valid values for querying an element, for example, in listPhone API, what are all the valid values for the element in Search Criteria.&lt;BR /&gt;Thanks.&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2022 20:49:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4686408#M3946</guid>
      <dc:creator>Mark Dugas</dc:creator>
      <dc:date>2022-09-13T20:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Where to find CUCM AXL complete reference guide for all API</title>
      <link>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4687236#M3947</link>
      <description>&lt;P&gt;The schema should show the allowed &amp;lt;SearchCriteria&amp;gt; elements for each requests, i.e. for &amp;lt;listPhone&amp;gt;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dstaudt_0-1663170597087.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/162517i8F262642EF6FDEB0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dstaudt_0-1663170597087.png" alt="dstaudt_0-1663170597087.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Within each element, at least for strings, you can use a few wildcards.&amp;nbsp; My understanding is the AXL &amp;lt;listXXX&amp;gt; requests under the covers eventually result in a SQL query similar to: SELECT w FROM x WHERE y LIKE z&lt;BR /&gt;and 'z' is basically criteria element string.&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/14.0"&amp;gt;
   &amp;lt;soapenv:Header/&amp;gt;
   &amp;lt;soapenv:Body&amp;gt;
      &amp;lt;ns:listPhone sequence="1"&amp;gt;
         &amp;lt;searchCriteria&amp;gt;
            &amp;lt;description&amp;gt;%testdescription%&amp;lt;/description&amp;gt;
         &amp;lt;/searchCriteria&amp;gt;
         &amp;lt;returnedTags&amp;gt;
            &amp;lt;name/&amp;gt;
            &amp;lt;description/&amp;gt;
            &amp;lt;product/&amp;gt;
            &amp;lt;model/&amp;gt;
         &amp;lt;/returnedTags&amp;gt;
      &amp;lt;/ns:listPhone&amp;gt;
   &amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;is run as:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT Device.pkid AS t0_pkid, Device.name AS t0_name, Device.description AS t0_description, Device.tkProduct AS t0_tkProduct, Device.tkModel AS t0_tkModel FROM Device WHERE my_lower(Device.description) LIKE "%testdescription%"&lt;/LI-CODE&gt;
&lt;P&gt;The supported wildcards for the LIKE clause come from the underlying CUCM datbase (Informix IDS): &lt;A href="https://www.ibm.com/docs/en/informix-servers/14.10?topic=condition-like-operator" target="_blank"&gt;https://www.ibm.com/docs/en/informix-servers/14.10?topic=condition-like-operator&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;(afaik the escape character is '\')&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 16:26:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/where-to-find-cucm-axl-complete-reference-guide-for-all-api/m-p/4687236#M3947</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2022-09-14T16:26:40Z</dc:date>
    </item>
  </channel>
</rss>

