webflow / js-webflow-api

Node.js SDK for the Webflow Data API
https://www.npmjs.com/package/webflow-api
296 stars 95 forks source link

Get single site not working for some reason? #78

Closed nachogoncam closed 1 year ago

nachogoncam commented 1 year ago

webflow.sites({ siteId: "[ SITE ID ]" }) seems to be returning all the sites associated to the authenticated user and not the specific site for the provided id

johnagan commented 1 year ago

have you tried it without the s in sites, like this?

webflow.site({ siteId: "[ SITE ID ]" })
nachogoncam commented 1 year ago

Okay, that worked! Thanks!

Here in the docs it's written in plural so it didn't even occur to me to try with site

johnagan commented 1 year ago

Fixed! Thank you 😎