Skip to content

Squarespace - Get Orders

This module allows querying orders from a Squarespace store. It can get a specific order by ID or list orders filtered by fulfillment status and dates.

  • API Key: Squarespace API key
ParameterTypeRequiredDescription
credentials_idcredentialYesSquarespace credentials
order_idstringNoSpecific order ID
fulfillmentStatusselectNoStatus: PENDING, FULFILLED, CANCELED
modifiedAfterstringNoOrders modified after (ISO 8601)
modifiedBeforestringNoOrders modified before (ISO 8601)
cursorstringNoPagination cursor
  • PENDING: Order pending shipment
  • FULFILLED: Fully shipped order
  • CANCELED: Cancelled order
{
"success": true,
"orders": [...],
"count": 25,
"hasNextPage": true,
"nextCursor": "abc123...",
"message": "25 orders retrieved"
}
  • id: Order ID
  • orderNumber: Visible order number
  • createdOn: Creation date
  • modifiedOn: Modification date
  • fulfillmentStatus: Fulfillment status
  • customerEmail: Customer email
  • lineItems: Order products
  • shippingAddress: Shipping address
  • billingAddress: Billing address
  • grandTotal: Order total
  • subtotal: Subtotal
  • shippingTotal: Shipping total
  • taxTotal: Tax total
{
"order_id": "5f3e..."
}
{
"fulfillmentStatus": "PENDING"
}
{
"modifiedAfter": "2024-01-01T00:00:00Z",
"modifiedBefore": "2024-01-31T23:59:59Z"
}
  • Orders cannot be modified directly via API
  • To mark as shipped, use the CreateFulfillment module
  • Prices are returned in the currency configured in the store
  • The API includes full address and product information
  • SquarespaceCreateFulfillment - Mark order as shipped with tracking
  • SquarespaceGetProducts - Get order product data
  • SquarespaceGetProfiles - Get order customer profile
  • SquarespaceGetTransactions - Get order payment transactions