Skip to content

Contact Center Commands

The webex cc subcommand provides access to the Webex Contact Center API. The --orgid flag is auto-populated from your login, so you typically don’t need to pass it.

ResourceDescription
address-bookAddress books
agent-personal-greeting-filesAgent personal greeting file management
agent-summariesAgent summary reports
agent-wellbeingAgent wellbeing configuration
agentsAgent state operations (login, logout, state change)
ai-assistantAI assistant configuration
ai-featureAI feature management
audio-filesIVR prompts and audio files
auto-csatAutomated CSAT configuration
auxiliary-codeIdle and wrap-up reason codes
business-hourBusiness hours schedules
call-monitoringCall monitoring configuration
callbacksCallback management
campaign-managerOutbound campaign management
capturesCapture management
contact-list-managementContact list management
contact-numberContact number management
contact-service-queueContact service queues
data-sourcesData source configuration
desktop-layoutAgent desktop layouts
desktop-profileAgent desktop profiles
dial-numberDN-to-entry-point mappings
dial-planOutdial plans
dnc-managementDo-not-call list management
entry-pointInbound entry points (voice, chat, email, social)
estimated-wait-timeEstimated wait time configuration
flowFlow export/import/publish
generated-summariesAI-generated summary management
global-variablesFlow global variables
holiday-listHoliday lists
journeyCustomer journey management
journey-customer-identificationJourney customer identification
journey-data-ingestionJourney data ingestion
journey-profile-creation-insightsJourney profile creation insights
journey-subscriptionJourney subscription management
journey-trigger-actionsJourney trigger actions
journey-workspace-managementJourney workspace management
multimedia-profileChannel blending profiles
notificationNotification management
outdial-aniOutdial ANI lists
overridesSchedule overrides
queuesQueue statistics and management
realtimeRealtime data and statistics
resource-collectionResource collection management
searchSearch operations
siteContact center sites
skillSkill definitions
skill-profileSkill profile assignments
subscriptionsSubscription management
tasksTask management
teamAgent teams
user-profilesUser profile (access control)
usersCC-enabled users
work-typesWork type definitions
Terminal window
# List resources
webex cc <resource> list
# Get by ID
webex cc <resource> get-id --orgid "..." --id "..."
# Create
webex cc <resource> create --orgid "..." --body-file config.json
# Update
webex cc <resource> update-id --orgid "..." --id "..." --body-file updated.json
# Delete
webex cc <resource> delete-id --orgid "..." --id "..."
# List references (what depends on this resource)
webex cc <resource> list-references --orgid "..." --id "..."

CC list endpoints support RSQL filtering:

Terminal window
webex cc site list --filter='name=="Site A"'
webex cc team list --search="Sales"

Auto-paginate to get all results:

Terminal window
webex cc entry-point list --paginate

Manual pagination:

Terminal window
webex cc entry-point list --page=0 --page-size=100
webex cc entry-point list --page=1 --page-size=100

Most resources use list as the list subcommand. One exception:

ResourceList command
dial-numberlist-dialed-mapping

Use --help on any resource to see its available subcommands.