Forum Discussion
HASSANNAZEER
8 years agoFrequent Visitor
Api token
Can anyone help me with connecting this data source using API KEY http://developer.fulcrumapp.com
Phoenixke
8 years agoFrequent Visitor
let
request = Json.Document(Web.Contents("insert_url_here",
[Headers=[#"Accept"="application/json", #"Content-Type"="application/json", #"X-ApiToken"="insert_apikey_here"],
Content=Text.ToBinary("{""insert_body_here""}"),
RelativePath = "insert_any_relative_path_here_or_ommit"]))[insert_any_json_response_you_want_to_capture_or_ommit]
in
request
Adding the Content into a blank query forces PBI to do a POST instead of the GET you can do.