QuestionQ185
Using APIs

Refer to the exhibit. A system administrator has installed a Linux-based home alarm system that can run a Bash shell script whenever an intruder is detected. Create a chat-ops script that sends alarm notifications through the Webex REST API. Not all code snippets are used.
Drag & Drop
toPersonEmail
userName
-X POST
-X PUT
Content-Type: application/json
Content-Type: application/xml
Authorization: Basic
Authorization: Bearer
#!/bin/bash curl https://api.ciscospark.com/v1/messages \ -H '' \ -H ' NMU4NjQ0YWUtNjYy_P..._1eb6574-ad72cae0e10f' \ -d '{ "": "cisco@usa.net", "text": "Intruder Alert!" }'
Community Discussion