This is a Cisco Spark command line interface which allows you to access Cisco Spark API from your Shell Terminal.
This tool is dependent on the node-ciscospark module, therefore it supports all the APIs and methods offered by that module.
- Node.js >= 4.0.0
- NPM
- *nix Shell environment (e.g. Bash) - Windows CMD coming soon...
sudo npm install --global ciscospark-cli
spark --version
Before you are able to use this CLI tool, you will need an account in Spark and an Access Token. See Getting Started
export CISCOSPARK_ACCESS_TOKEN="***YourSparkAccessToken***"
spark create --roomId=831cb6a0-2c28-21e7-a283-f18478d5ab59 --text="Hello World"
spark create --toPersonEmail:"john.doe@example.com" --markdown:"Hello **John**"
spark rooms create -b --title="My new Chatroom"
spark rooms list -b
spark rooms get -b --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx
spark rooms update -b --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx --title="Name Changed"
spark rooms delete --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx
$ spark --help
Cisco Spark API command line tool
Command line wrapper for Cisco Spark API
Synopsis
$ spark Method Command [options] [params]
Method List
messages (Default)
people
teams
rooms
memberships
teamMemberships
webhooks
Command List (Required)
list List all targets
create Create a new target
get Get a target details
update Update a target details
delete Delete a target
Options
-b, --beautify Beautify JSON response - made human readable
-h, --help Show help (This screen)
-j, --json jsonString Field parameters as JSON string
-f, --outfile fileName JSON response output to file
-q, --quiet Suppress Response Output to Console. Does not
suppress error output.
-t, --token accessToken Spark Access Token
-v, --version Show version number
Params
Query or Request parameters applicable for the Method and Command in the format of:
--name=value
Example:
--roomId=804cb6a0-2c26-11e7-a284-f18478d5eb59 --text="Hello World"
For valid parameters, see the Method documentation at: https://developer.ciscospark.com/quick-reference.html
Usage Examples
Send a text message to a Room
spark message create --roomId=804cb6a0-2c26-11e7-a284-f18478d5eb59 --text="Hello World"
Send a markdown message to a Person
spark message create --toPersonEmail=john.doe@cisco.com --markdown="Hello **John**"
Create a new chat room
spark rooms create -b --title="My new Chatroom"
List all the rooms you belongs to
spark rooms list -b
Get a room detail
spark rooms get -b --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx
Update a room detail
spark rooms update -b --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx --title="Name Changed"
Delete a room
spark rooms delete --id=Y2lzY29zcGFyazovL3VzL1JPT00vY2Q5YmVkODAtMzFkNi0xMWU3LTlhMTEtZTUzOTFlOTI4MjAx
For the supported API and methods, see node-ciscospark README.md.
The MIT License (MIT)
Copyright (C) 2017 Joseph Lee
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.