Hi,
I've had a google of how to do this and have gotten stuck
I would like to use excel to dl and parse data from www.teamgate.com I have already used the api to connect to klipfolio so I just need to get power query to work !
My (edited for security) details are :
GET https://api.teamgate.com/v4/deals?embed=customFields&isDeleted=no&limit=1000
X-App-Key:123123123
X-Auth-Token:abcabc
I have tried this
and also
however I am hit with "access to the resource is forbidden" and requires me to edit credentials. The answer is always Access to the resource is forbidden.
I have looked a lot of resources, however they always give examples that seem to work :D
Help !
I've had a google of how to do this and have gotten stuck
I would like to use excel to dl and parse data from www.teamgate.com I have already used the api to connect to klipfolio so I just need to get power query to work !
My (edited for security) details are :
GET https://api.teamgate.com/v4/deals?embed=customFields&isDeleted=no&limit=1000
X-App-Key:123123123
X-Auth-Token:abcabc
I have tried this
Code:
let
Source = Json.Document(Web.Contents("https://api.teamgate.com/v4/deals?embed=customFields&isDeleted=no&limit=1000",
[Query = [
#"X-App-Key" = "123123123",
#"X-Auth-Token" = "abcabcabc"]]
))
in
Source
and also
Code:
let
Source = Json.Document(Web.Contents(https://api.teamgate.com/v4/deals?embed=customFields&isDeleted=no&limit=1000,
[
Headers = [#"X-App-Key"="123123123",
#"X-App-Token"="abcabcabc",
#"Content-Type"="application/json"],
Content = Text.ToBinary("")
]
))
in
Source
however I am hit with "access to the resource is forbidden" and requires me to edit credentials. The answer is always Access to the resource is forbidden.
I have looked a lot of resources, however they always give examples that seem to work :D
Help !