Squarespace
API actions for the Squarespace integration.
Squarespace
Manage Squarespace sites, pages, and commerce resources with an API key.
Create Squarespace page
Create a new page on a Squarespace site.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
title | string | Yes | Page title |
type | string | Yes | Page type |
Response
{}Create Squarespace product
Create a new product in a Squarespace store.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
name | string | Yes | Product name |
description | string | No | Product description |
price | number | Yes | Product price |
Response
{}List Squarespace orders
Retrieve orders for a Squarespace commerce site.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
limit | number | No | Maximum number of orders to return |
Response
[
{}
]List Squarespace pages
Retrieve pages for a specific Squarespace site.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
Response
[
{}
]List Squarespace products
Retrieve products for a Squarespace commerce site.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
limit | number | No | Maximum number of products to return |
Response
[
{}
]List Squarespace sites
Retrieve available Squarespace sites for the authenticated account.
Response
[
{}
]Update Squarespace inventory
Update inventory levels for a Squarespace product.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
product_id | string | Yes | Product ID |
quantity | number | Yes | New inventory quantity |
Response
{}Update Squarespace page
Update an existing Squarespace page.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Squarespace site ID |
page_id | string | Yes | Page ID |
title | string | No | Updated page title |
body | string | No | Updated page body content |
Response
{}