Forum Discussion
WatsonJ
6 years agoNew Member
Get Data from Cisco Spark WebEx Teams via REST API
Hello!!! I am trying to connect to the Cisco Spark instance for WebEx Teams via their REST API. I put the URL and the Authorization header parameter (access token) into the Web connector: A...
- 6 years ago
Hi WatsonJ ,
You could configure the connection manually with m query.
let Source = Json.Document(Web.Contents("insert the URL here you used to in the regular way, and add ", [Headers=[Authorization="Basic insert your token here="]])), issues = Source[issues], in SourceHere is a similar case for your reference:
v-eachen-msft
6 years agoCommunity Support
Hi WatsonJ ,
You could configure the connection manually with m query.
let
Source = Json.Document(Web.Contents("insert the URL here you used to in the regular way, and add ", [Headers=[Authorization="Basic insert your token here="]])),
issues = Source[issues],
in
Source
Here is a similar case for your reference:
- WatsonJ6 years agoNew Member
I used your query, but the only thing I changed was the word "basic" to "bearer", which apparently Cisco Spark needs. As soon as I figured that out, it worked! Hopefully if anyone searches for the meta tags on this question, they can find this solution useful. Thanks again!