Webex Teams CLI is a versatile tool that works via Webex Teams API to interact with Webex Teams. It currently has the following features
- Send messages
- Broadcast to multiple rooms
- Send Files
- Manage a Webex team room
- Add / Remove users from Webex Teams room in bulk
- A message relay server than can be hosted as a microservice allowing other services to send messages to Webex Teams.
- Create an Onboarding Server that can onboard users via the website.
- Start up a Interactive Terminal UI or a Terminal console to send / recieve files or messages from Webex Teams
- Experimental Start this up as a control center on a remote server and control the remote server via Webex Teams.
- Capability to run on many architectures including Linux x86_64, Linux Arm64, Darwin (MacOs x86_64, Arm64), Windows etc. without any external dependencies. I've tested it on Alpine Linux, Raspberry PI, MacOs, Windows.
This tool was born out of a necessity to send notifications to Webex Teams from CI/CD pipelines. Over time it has grown in capability and function therefore putting this out to the public to use / expand.
Set Env variable WEBEX_ACCESS_TOKEN, which can get retrieved from https://developer.webex.com/docs/api/getting-started
export WEBEX_ACCESS_TOKEN="<access_token>"
Send a text message (message supports markdown formatting)
webex-teams-cli room msg -t "message text"
Send a text message (message supports markdown formatting) along with a file. File can be a remote http URL or a locally accessible file.
webex-teams-cli room msg -t "message text" -f <file>
Send a text message using the docker image
docker run -it ghcr.io/tejzpr/webex-teams-cli:main webex-teams-cli --accessToken <access-token> room --pe [email protected] msg -t "a test message"
Send a file test.txt using docker
docker run -it -v /testdir:/testdir ghcr.io/tejzpr/webex-teams-cli:main webex-teams-cli --accessToken <access-token> room --pe [email protected] msg -f /testdir/test.txt
Find the room details for a title
docker run -it ghcr.io/tejzpr/webex-teams-cli:main webex-teams-cli --accessToken <access-token> utils findroom -t "Room Name"
webex-teams-cli --accessToken <access-token> utils findroom -t "Room Name"
Set Env variable WEBEX_ROOM_ID, is the Space ID that you can get by visiting https://teams.webex.com/ and clicking on a room.
export WEBEX_ROOM_ID="<roomid>"
Then you can send a message to the room by running the command
webex-teams-cli room msg -t "message text"
OR
Use roomID flag to set the room ID
webex-teams-cli room -roomID <ROOMID> msg -t "message text" -f <file>
Set Env variable WEBEX_PERSON_EMAIL
export WEBEX_PERSON_EMAIL="<EMAILID>"
Then you can send a message to the room by running the command
webex-teams-cli room msg -t "message text"
OR
Use toPersonEmail flag to set the person email ID
webex-teams-cli room -toPersonEmail <[email protected]> msg -t "message text" -f <file>
Distribution archive Includes executables for Linux amd_x64, Linux ARM5, Windows & Darwin (MacOS)
Allows to export members of a room into a CSV file
webex-teams-cli room --roomID <roomID> exportmembers --csv ./members.csv
Allows to add multiple members to room(s). The member list can be passed via a .csv file with the header & data email,moderator where email is a string and moderator acceps true/false eg.
email,moderator
[email protected],true
[email protected],false
Members will be added to rooms for which you have specified permissions of either 'a' (all), 'o' (owner), 'm' (moderator) or 'om' (owner and moderator). Default is owner and moderator use the --access flag to change this.
then run the command
webex-teams-cli room --roomID <roomID> addmembers --csv ./people.csv --access om
if you would like to add members to a list of rooms specified by a csv file then run
webex-teams-cli room addmembers --csv ./people.csv --roomsidscsv ./rooms.csv
where roomsidscsv has the following format:
roomids
<roomid-1>
<roomid-2>
if you would like to add members to all rooms that you have moderator access to, skip the roomID parameter
webex-teams-cli room addmembers --csv ./people.csv
Allows to remove multiple members from room(s). The member list can be passed via a .csv file with the header & data "email" where email is a string. eg.
Members will be removed from rooms for which you have specified permissions of either 'a' (all), 'o' (owner), 'm' (moderator) or 'om' (owner and moderator). Default is owner and moderator use the --access flag to change this.
then run the command
webex-teams-cli room --roomID <roomID> removemembers --csv ./people.csv --access om
if you would like to remove members from a list of rooms specified by a csv file then run
webex-teams-cli room removemembers --csv ./people.csv --roomsidscsv ./rooms.csv
where roomsidscsv has the following format:
roomids
<roomid-1>
<roomid-2>
if you would like to remove members from all rooms that you have moderator access to, skip the roomID parameter
webex-teams-cli room removemembers --csv ./people.csv
Broadcast a Message or a File to a set of rooms (File broadcast will be slow, do not use for large files)
Members will be removed from rooms for which you have specified permissions of either 'a' (all), 'o' (owner), 'm' (moderator) or 'om' (owner and moderator). Default is owner and moderator use the --access flag to change this.
then run the following command to broadcast a text
webex-teams-cli room broadcast --roomsidscsv ./rooms.csv --t "message text"
to broadcast a file
webex-teams-cli room broadcast --roomsidscsv ./rooms.csv --f <file-path>
To broadcast to all rooms that you are a member of use the --access a flag
webex-teams-cli room broadcast --t "message text" --access a
Use this mode at your own risk. This mode allows selected users system level access to remote machines through Webex
Allows users to start up the CLI in a remote machine and then execute commands on the remote machine via Webex Teams.
WEBEX_ACCESS_TOKEN has to be a BOT (not a USER) token to use the shell command execution mode.
Add a bot to a Webex room and provide its access token to WEBEX_ACCESS_TOKEN, then run
webex-teams-cli shell --pes [email protected],[email protected] --rid <roomID>
Now you can interact with the BOT from the Webex Room. To view help send the help command from the Webex Room. To execute a command on the remote server on which the CLI is running send the command cmd from the webex room.
Allows users to start up the CLI in an interactive mode on a remote machine and communicate to Webex from the remote machine.
WEBEX_ACCESS_TOKEN has to be a USER (not a BOT) token to use the interactive prompt.
webex-teams-cli room --i true msg
Or to directly open a room
webex-teams-cli room --pe [email protected] --i true msg
To send a file via interactive prompt use the sendfile command
<- ([email protected]): sendfile <file-path or URI>
While in interactive mode the following Keyboard shortcuts are available
- Use Crtl+H to open help pane
- Use Crtl+R to change rooms (Lists most recent 50 rooms)
- TAB to switch between panes
Run the shell script run.sh and follow the prompts
Allows users to start up the CLI in an interactive (console) mode on a remote machine and communicate to Webex from the remote machine.
WEBEX_ACCESS_TOKEN has to be a USER (not a BOT) token to use the console prompt.
webex-teams-cli room --pe [email protected] --c true msg
To send a file via console prompt use the sendfile command
<- ([email protected]): sendfile <file-path or URI>
Create a server which can onboard users to a Webex Teams room. The user to be added is retrieved via the header auth_user The email address of the user is constructed using a combination of auth_user & the emaildomain flag. The server's default port is 8000 and it can be changed by using the -p flag
webex-teams-cli adduserserver -emaildomain email.com
Once the server is UP a user can add themselves to a room by accessing
GET http://<url>/<webexroomid>
Create a message relay server send messages to a Webex Teams room
webex-teams-cli messagerelayserver -messagerelaykey <random256lengthkey>
Once the server is UP a user can send messages to a room by calling the POST endpoint and sending a POST request containing the message body, and a Header X-Message-Key which should match the messagerelaykey used while starting the server.
POST http://<url>/<webexroomid>