Lodol Docs

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

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
titlestringYesPage title
typestringYesPage type

Response

{}

Create Squarespace product

Create a new product in a Squarespace store.

Parameters

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
namestringYesProduct name
descriptionstringNoProduct description
pricenumberYesProduct price

Response

{}

List Squarespace orders

Retrieve orders for a Squarespace commerce site.

Parameters

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
limitnumberNoMaximum number of orders to return

Response

[
  {}
]

List Squarespace pages

Retrieve pages for a specific Squarespace site.

Parameters

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID

Response

[
  {}
]

List Squarespace products

Retrieve products for a Squarespace commerce site.

Parameters

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
limitnumberNoMaximum 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

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
product_idstringYesProduct ID
quantitynumberYesNew inventory quantity

Response

{}

Update Squarespace page

Update an existing Squarespace page.

Parameters

ParameterTypeRequiredDescription
site_idstringYesSquarespace site ID
page_idstringYesPage ID
titlestringNoUpdated page title
bodystringNoUpdated page body content

Response

{}

On this page