Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
sbenzaquen
Helper I
Helper I

API: syntax error on access token

Hi, I'm using the following code to connect to Harvest API and use a smart pagination system, but a syntax error "token identified expected" appears marking the access token section (from "Headers"). Could you please let me know what's wrong?

 

let
iterations = 10,
url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]])),

FnGetOnePage =
(url) as record =>

let
Source = Json.Document(Web.Contents(url)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,

GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList

 

 

Thanks,
Salvador

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @sbenzaquen ,

"url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]]))"

This syntax is not correct in power query, ',' means the ending of a query statement, contents after ',' would be a new query statement, '))' are not be used in the statement.

 

Try to modify the query like this:

 

let
    iterations = 10,
    url ="https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",
    header = 
        [Headers =
            [#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"
            ]
        ],

FnGetOnePage =
(url,header) =>

let
Source = Json.Document(Web.Contents(url,header)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,

GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url,header)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList

 

Here is an example syntax of using parameter in power query based on Web.Contents():

 

let
    url = "https://api.powerbi.com/v1.0/myorg/datasets/" & "xxx",
    header = 
        [   Headers = 
                [#"Authorization" = "Bearer xxx"]
        ],
    Source = Json.Document(Web.Contents(url,header))
        
in
    Source

 

 4.png

Refer: THE HIDDEN GEMS OF THE FUNCTION WEB.CONTENTS() 

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yingjl
Community Support
Community Support

Hi @sbenzaquen ,

"url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]]))"

This syntax is not correct in power query, ',' means the ending of a query statement, contents after ',' would be a new query statement, '))' are not be used in the statement.

 

Try to modify the query like this:

 

let
    iterations = 10,
    url ="https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",
    header = 
        [Headers =
            [#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"
            ]
        ],

FnGetOnePage =
(url,header) =>

let
Source = Json.Document(Web.Contents(url,header)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,

GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url,header)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList

 

Here is an example syntax of using parameter in power query based on Web.Contents():

 

let
    url = "https://api.powerbi.com/v1.0/myorg/datasets/" & "xxx",
    header = 
        [   Headers = 
                [#"Authorization" = "Bearer xxx"]
        ],
    Source = Json.Document(Web.Contents(url,header))
        
in
    Source

 

 4.png

Refer: THE HIDDEN GEMS OF THE FUNCTION WEB.CONTENTS() 

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.