This action marks an order in your Squarespace store as fulfilled, optionally recording shipment tracking details and emailing the customer.
- API endpoint slug
- squarespace.fulfill_an_order
- Filter code method
- Squarespace.fulfillAnOrder.skip(string?: reason)
- Runtime method
- runAction("squarespace.fulfill_an_order", {})
Action fields
- Label
- Which order?
- Helper text
- The order's Squarespace ID. Use the OrderId ingredient from a Squarespace trigger, or copy it from the end of the order's dashboard URL.
- Slug
- order_id
- Required
- true
- Can have default value
- true
- Filter code method
- Squarespace.fulfillAnOrder.setOrderId(string: order_id)
- Label
- Carrier name
- Helper text
- The shipping carrier, for example UPS or FedEx.
- Slug
- carrier_name
- Required
- false
- Can have default value
- true
- Filter code method
- Squarespace.fulfillAnOrder.setCarrierName(string: carrier_name)
- Label
- Tracking number
- Helper text
- The shipment's tracking number. Squarespace records a shipment only when a carrier name and tracking number are both given.
- Slug
- tracking_number
- Required
- false
- Can have default value
- true
- Filter code method
- Squarespace.fulfillAnOrder.setTrackingNumber(string: tracking_number)
- Label
- Email the customer?
- Helper text
- Whether Squarespace sends its fulfillment notification email to the customer.
- Slug
- send_notification
- Required
- true
- Can have default value
- true
- Filter code method
- Squarespace.fulfillAnOrder.setSendNotification(string: send_notification)