<?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: CUCM Get user status for users using AXL APIs in Management</title>
    <link>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3945087#M3210</link>
    <description>&lt;P&gt;Just tryed myself&lt;/P&gt;&lt;PRE&gt;SQL: run sql select userid, status from enduser
userid     status
======     ======
LDAP_USER   1
INAKT_USER  2&lt;/PRE&gt;&lt;P&gt;AXl get User says &amp;lt;status&amp;gt;1&amp;lt;/status&amp;gt; or &amp;lt;status&amp;gt;2&amp;lt;/status&amp;gt;&lt;/P&gt;&lt;P&gt;Status 1 seems to be Active Enabled LDAP Synchronized User&lt;BR /&gt;Status 2 seems to be Inactive LDAP Synchronized User&lt;/P&gt;&lt;P&gt;So i had a look in the Data Dictionary:&lt;/P&gt;&lt;PRE&gt;2.3.175.41 status (FI-1653)
Type: long
Default Value: 1
Remarks: Active or Inactive&lt;/PRE&gt;&lt;P&gt;As far as i see there are only the two states active or inactive&lt;/P&gt;&lt;P&gt;If you want to know if auser is LDAP Synced you will need to have a look for fkdirectorypluginconfig&lt;/P&gt;&lt;PRE&gt;run sql select userid, status, fkdirectorypluginconfig from enduser

userid        status    fkdirectorypluginconfig
=======       ======    ====================================
LDAP_USER       1       444cfb4a-ab21-9519-9f92-99144c530f59
LOKAL_USER      1       NULL
INAKT_USER      2       444cfb4a-ab21-9519-9f92-99144c530f59  &lt;/PRE&gt;&lt;P&gt;fkdirectorypluginconfig is null if there is no LDAP refernece and will return the ID of the LDAP if synced from there&lt;/P&gt;</description>
    <pubDate>Tue, 22 Oct 2019 08:13:05 GMT</pubDate>
    <dc:creator>thedd</dc:creator>
    <dc:date>2019-10-22T08:13:05Z</dc:date>
    <item>
      <title>CUCM Get user status for users using AXL APIs</title>
      <link>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3892723#M3117</link>
      <description>&lt;P&gt;Is it possible to get user status for users that is shown on the dashboard from the AXL APIs? I have tried checking the APIs, get user, list user and also tried SQL queries but none of them have that information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Image is attached for reference to user status.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 09:22:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3892723#M3117</guid>
      <dc:creator>arehman@makenai.es</dc:creator>
      <dc:date>2019-07-19T09:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM Get user status for users using AXL APIs</title>
      <link>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3893769#M3118</link>
      <description>&lt;P&gt;Check &amp;lt;getUser&amp;gt; field &amp;lt;status&amp;gt;: &lt;A href="https://pubhub.devnetcloud.com/media/axl-schema-reference/docs/Files/AXLSoap_getUser.html#Link782" target="_blank"&gt;https://pubhub.devnetcloud.com/media/axl-schema-reference/docs/Files/AXLSoap_getUser.html#Link782&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 17:45:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3893769#M3118</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2019-07-19T17:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM Get user status for users using AXL APIs</title>
      <link>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3893774#M3120</link>
      <description>&lt;P&gt;I checked that field it doesn't return the status that is on the dashboard. The dashboard status is user status and has values like Enabled Local User, LDAP Active User and so on while the status gotten from the get User API is a number and is same for all.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 17:49:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3893774#M3120</guid>
      <dc:creator>arehman@makenai.es</dc:creator>
      <dc:date>2019-07-19T17:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM Get user status for users using AXL APIs</title>
      <link>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3945087#M3210</link>
      <description>&lt;P&gt;Just tryed myself&lt;/P&gt;&lt;PRE&gt;SQL: run sql select userid, status from enduser
userid     status
======     ======
LDAP_USER   1
INAKT_USER  2&lt;/PRE&gt;&lt;P&gt;AXl get User says &amp;lt;status&amp;gt;1&amp;lt;/status&amp;gt; or &amp;lt;status&amp;gt;2&amp;lt;/status&amp;gt;&lt;/P&gt;&lt;P&gt;Status 1 seems to be Active Enabled LDAP Synchronized User&lt;BR /&gt;Status 2 seems to be Inactive LDAP Synchronized User&lt;/P&gt;&lt;P&gt;So i had a look in the Data Dictionary:&lt;/P&gt;&lt;PRE&gt;2.3.175.41 status (FI-1653)
Type: long
Default Value: 1
Remarks: Active or Inactive&lt;/PRE&gt;&lt;P&gt;As far as i see there are only the two states active or inactive&lt;/P&gt;&lt;P&gt;If you want to know if auser is LDAP Synced you will need to have a look for fkdirectorypluginconfig&lt;/P&gt;&lt;PRE&gt;run sql select userid, status, fkdirectorypluginconfig from enduser

userid        status    fkdirectorypluginconfig
=======       ======    ====================================
LDAP_USER       1       444cfb4a-ab21-9519-9f92-99144c530f59
LOKAL_USER      1       NULL
INAKT_USER      2       444cfb4a-ab21-9519-9f92-99144c530f59  &lt;/PRE&gt;&lt;P&gt;fkdirectorypluginconfig is null if there is no LDAP refernece and will return the ID of the LDAP if synced from there&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2019 08:13:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-get-user-status-for-users-using-axl-apis/m-p/3945087#M3210</guid>
      <dc:creator>thedd</dc:creator>
      <dc:date>2019-10-22T08:13:05Z</dc:date>
    </item>
  </channel>
</rss>

