Trace Level API

Use the Trace Level API to set the trace levels for the following components:

  • Unified Contact Center Enterprise (CCE)

  • Unified Customer Voice Portal (CVP)

  • Unified Communications Manager (UCM)

URL

https://<server>/unifiedconfig/config/tracelevel

Operations

  • list: Returns the trace level for each component type.

    • Query parameters

      • Summary list: See list. Summary defaults to true on the Trace Level API.

  • update: Sets the trace level for each component type.

Parameters

  • component: A list of components for which the trace level is set. Includes the following parameters:

    • type:
      • CCE

      • CVP

      • UCM

    • level:
      • NORMAL
      • DETAILED
      • CUSTOM: Not set by user. This level appears when one or more trace levels have been set by an outside program, as the component does not match the normal detailed definitions for the trace levels.
    • traceMachines: A collection of trace information about each machine containing the refURL of the machine and a collection of process level trace values. Only available when the summary query parameter is false.

Example List Response

Code Snippet
Copy<traceLevels>
     <component>
        <type>CCE</type>
        <level>DETAILED</level>
     </component>
     <component>	
        <type>CVP</type>				
        <level>NORMAL</level>
     </component>	
     <component>	
        <type>UCM</type>				
        <level>CUSTOM</level>
     </component>	
</traceLevels>