Skip to content

Squarespace - Get Transactions

This module allows querying payment transactions from a Squarespace store. It includes sales, refunds, and other financial movements.

  • API Key: Squarespace API key
ParameterTypeRequiredDescription
credentials_idcredentialYesSquarespace credentials
transaction_idstringNoSpecific transaction ID
modifiedAfterstringNoTransactions after (ISO 8601)
modifiedBeforestringNoTransactions before (ISO 8601)
cursorstringNoPagination cursor
{
"success": true,
"transactions": [...],
"count": 100,
"total_amount": "5432.10",
"total_sales": 95,
"total_refunds": 5,
"hasNextPage": true,
"nextCursor": "abc123...",
"message": "100 transactions retrieved"
}
  • id: Transaction ID
  • createdOn: Transaction date
  • modifiedOn: Modification date
  • salesOrderId: Associated order ID
  • total: Total amount
  • customerEmail: Customer email
  • paymentState: Payment state
  • lineItems: Item details
{}
{
"transaction_id": "5f3e..."
}
{
"modifiedAfter": "2024-01-01T00:00:00Z",
"modifiedBefore": "2024-01-31T23:59:59Z"
}
  • Transactions are read-only
  • Refunds appear as transactions with negative amounts
  • The total_amount field is the sum of all transactions
  • total_sales and total_refunds are calculated counters
  • Includes transactions for physical products, digital products, and subscriptions
  • SquarespaceGetOrders - Get orders associated with transactions
  • SquarespaceGetProfiles - Get customer profile of a transaction