Reputation: 41
I have been trying to pull data from one of my Sheets in Smartsheet using Power Query without no luck. I generated an API token from Smartsheet that I used in the Power Query Wizard but still failed.
Upvotes: 0
Views: 2491
Reputation: 41
= Web.Contents(
"https://api.smartsheet.com/1.1/sheet/4693183612381060",
[
Headers = [
#"Authorization" = "Bearer YOUR_API_TOKEN"
]
]
)
Upvotes: 2