We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c67bf9 commit 963e261Copy full SHA for 963e261
README.md
@@ -30,7 +30,7 @@ $ yarn add webflow-api
30
31
## Usage
32
33
-Simply import `Webflow` and start making calls to our API.
+Simply import `webflow-api` and start making calls to our API.
34
35
```javascript
36
import { WebflowClient } from "webflow-api";
@@ -49,7 +49,7 @@ const custom_domain_id_2 = process.env.CUSTOM_DOMAIN_ID_2;
49
const sites = await webflow.sites.list();
50
51
// Get Site
52
-const site = await webflow.sites.get("site_id");
+const site = await webflow.sites.get(site_id);
53
54
// Get Custom Domains
55
const customDomains = await webflow.sites.getCustomDomain(site_id);
0 commit comments