Printie
Our StoryHow it worksBlogPricingContact Us
Let's Gooooo!
Back to blog
Print-on-demand intelligence
Published November 20, 2025 · Updated November 20, 2025

Order completion webhooks for Printie partners

Send every fulfilled order to your own stack with a structured webhook payload.
webhooksautomationordersintegrations
Order completion webhooks for Printie partners hero image

When we mark an order complete in Printie we can now push the full fulfillment payload to your webhook URL. That means tracking numbers, design files, SKU details, and costs land in your system instantly without polling.

Why this matters

  • Automate post-fulfillment ops: Trigger CRM updates, warehouse notifications, or a custom customer email sequence as soon as tracking exists.
  • Keep a single source of truth: Mirror Printie fulfillment events into your ERP, analytics layer, or a simple Google Sheet.
  • Stay flexible: Any HTTPS endpoint works—serverless functions, Zapier, Make, or your own API.

How it works

  1. Open Account Settings → Order Completion Webhook.
  2. Paste an https:// (or http:// for testing) endpoint up to 2000 characters. Leave it blank to turn the webhook off.
  3. Click Send test to push a mocked payload (see below) to the saved URL. This is the fastest way to verify your endpoint before live orders trigger it.
  4. Every time we write a fulfillment record, we POST the payload below to your URL. Network failures are logged but do not block order completion.

Payload snapshot

Here is a trimmed example:

{
  "event": "order.completed",
  "version": "2025-11-20",
  "fulfillmentId": "user-abc_1234",
  "completedAt": "2025-11-20T18:45:00.000Z",
  "order": {
    "orderId": "1234",
    "orderNumber": "A-1234",
    "status": "Completed",
    "customer": { "name": "Jane Doe", "email": "customer@example.com" },
    "shipping": {
      "carrier": "ups",
      "trackingNumber": "1Z999",
      "trackingUrl": "https://track/1Z999",
      "labelUrl": "https://labels/label.pdf",
      "cost": 12.5
    },
    "totals": {
      "totalQuantity": 2,
      "totalCost": 30
    },
    "items": [
      {
        "sku": "SKU-1",
        "title": "Widget",
        "quantity": 2,
        "designFiles": [
          {
            "designId": "cfg-1",
            "designName": "Cfg",
            "quantity": 1,
            "filamentType": "PLA",
            "selectedFilaments": [],
            "costData": { "totalCost": 15 }
          }
        ]
      }
    ]
  },
  "metadata": { "partner": null }
}

Key fields to expect:

  • fulfillmentId: mirrors the fulfillment history
  • shipping.trackingUrl / shipping.trackingNumber: ready for customer notifications.
  • items[].designFiles[]: the exact design files used, including filament selections.
  • totals.totalCost: total fulfillment cost

Tips for consuming the webhook

  • Verify quickly: Respond with 2xx to confirm receipt; non-2xx responses are logged but do not retry automatically.
  • Secure the endpoint: Add an allowlist for Printie IPs or a shared secret header on your side.
  • Map to your stack: Turn the payload into a customer email, a CRM timeline event, or a row in your BI warehouse.
  • Test fast: Use Send test on Account Settings or point to a request catcher (e.g., webhook.site) before live traffic hits your endpoint.

Want more automation ideas? Visit How it works to see where fulfillment fits in the broader Printie flow, and review Pricing for the pay-as-you-go cost model.

Grow faster with Printie

Discover how Printie automates made-to-order production. Explore the full workflow and flexible pricing to match your store’s scale.

See how it worksView pricing

More on this topic

March 20, 2026
How SKU Mapping Works for 3D Printed Products

SKU mapping connects storefront variants to files, materials, and packing rules so orders reach production without manual interpretation.

March 16, 2026
What Is Order Routing in 3D Print Fulfillment?

Order routing decides which file, material, profile, and packaging rules each order gets so fulfillment stays consistent at scale.

March 12, 2026
Can a 3D Printing Service Fulfill Etsy Orders?

Yes—if the workflow respects Etsy processing times, personalization rules, production partner disclosure, and tracking updates.