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 AMAssuming 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#Link97Subject: RE: Client Matter Code Replied by: Mahesh Sambandam on 02-10-2013 10:26:46 PMHi david,Thanks for your reply.But what i am now exactly looking is i have coding of all API"sIn 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 PMRe 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:Subject: RE: Client Matter Code Replied by: Mahesh Sambandam on 03-10-2013 10:21:26 PMThanks David for detail explanantion.You help me a lot.If I have further more queries i will post it here.Thanks againSubject: RE: Client Matter Code Replied by: Mahesh Sambandam on 03-10-2013 11:59:17 PMHey 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