tech/cisco/collaboration

COLLABORATION

Cisco collaboration — Webex cloud, CUCM on-prem telephony, Unity Connection voicemail, UCCX contact centre.

production
requires: tech/cisco
improves: tech/cisco

Cisco Collaboration

Stub — full skill pending. Core patterns documented below.

Platform landscape

ProductDeploymentUse case
WebexCloud (Cisco-hosted)Meetings, messaging, calling, contact centre as-a-service
CUCMOn-prem or private cloudEnterprise IP telephony, SIP trunking, dial plan
Unity ConnectionOn-premVoicemail, auto-attendant, speech recognition
UCCXOn-premContact centre, IVR, ACD, agent desktop
ExpresswayOn-prem edgeBusiness-to-business SIP federation, MRA (Mobile and Remote Access)

Webex API (cloud)

# List Webex rooms (spaces)
curl -H "Authorization: Bearer $WEBEX_TOKEN" \
  https://webexapis.com/v1/rooms

# Send a message
curl -X POST \
  -H "Authorization: Bearer $WEBEX_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"roomId":"...", "text":"Hello from API"}' \
  https://webexapis.com/v1/messages

CUCM dial plan essentials

Route Pattern: 9.XXXXXXXXXX  → PSTN SIP trunk (10-digit with access code)
Translation Pattern: strip leading 9 before sending to carrier
Partition + CSS: used for call routing policy (who can call what)

Gotchas