cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
209
Views
0
Helpful
0
Comments
cdnadmin
Community Member
This document was generated from CDN thread

Created by: Mahesh Sambandam on 01-10-2013 12:40:52 AM
Hi all,

I am new to AXL Developer Programming.

My task is to create automation to update cmc code in cucm database.

Where i can find the API documentation for CMC . I am searching for past one week i didn't find any.

or, UDDI regarding CMC.

Thanks  

Subject: RE: Client Matter Code
Replied by: David Staudt on 01-10-2013 11:42:02 AM
Assuming CMC = Client Matter code, I believe the add/update/removeCmcInfo requests may be what you are looking for:
http://developer.cisco.com/axl/Files/AXLSoap_addCmcInfo.html#Link97

Subject: RE: Client Matter Code
Replied by: Mahesh Sambandam on 02-10-2013 10:26:46 PM
Hi david,

Thanks for your reply.

But what i am now exactly looking is i have  coding of all API"s

In UpdateCmcInfoReq API there are four variables "uuid,code,newcode,description

I need to explanation of those variables like what is "uuid" and what is difference between "code" and "new code" .

Where i find those explanation documentation.


Thanks 

Subject: RE: Client Matter Code
Replied by: David Staudt on 03-10-2013 03:19:35 PM
Re updateCmcInfo:
- The CMC record to update can be specified by providing either the 'uuid' (the record's database unique key, a GUID value, often named 'pkid' in the UCM database) or by the actual CMC code itself, i.e. a sequence of numeric characters (string.)
- The record can be updated to change the actual code by specifying the <newCode> field.  The resulting record will have the same uuid, but a different code value:
 1<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/9.1">
 2   <soapenv:Header/>
 3   <soapenv:Body>
 4      <ns:updateCmcInfo sequence="1">
 5         <code>1234</code>
 6         <newCode>12345</newCode>
 7         <description>newDescription</description>
 8      </ns:updateCmcInfo>
 9   </soapenv:Body>
10</soapenv:Envelope>
11-------------------------------
12<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
13   <soapenv:Body>
14      <ns:updateCmcInfoResponse sequence="1" xmlns:ns="http://www.cisco.com/AXL/API/9.1">
15         <return>{2CC311E6-CB70-3B43-1852-EE6AC904FEE9}</return>
16      </ns:updateCmcInfoResponse>
17   </soapenv:Body>
18</soapenv:Envelope>


Subject: RE: Client Matter Code
Replied by: Mahesh Sambandam on 03-10-2013 10:21:26 PM
Thanks David for detail explanantion.

You help me a lot.

If I have further more queries i will post it here.

Thanks again

Subject: RE: Client Matter Code
Replied by: Mahesh Sambandam on 03-10-2013 11:59:17 PM
Hey David,
In ListCmcInfoReq API there are four variables "searchCriteria","ReturnedTags","skip","first"

Initially i have a doubt in CMC Table. How many columns are there in that table ? Can you list me the details.

If i need to get all the CMC codes and description in that table. How can i do it.

Whether all the four parameters are madantory ? To fetch the values from database.
 Thanks
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:

Quick Links