Brand WeaveNetwork

Integrations

Send Brand Weave the orders your partners drive. Server-side is preferred; the pixel is the quickest way to start.

Tracking

Conversion API

Connected

Server-to-server conversion events. The recommended way to attribute sales.

Tracking pixel

Connected

Fire a 1×1 pixel on your confirmation page. Quickest to install.

Commerce

Shopify

Coming soon

Auto-send orders and returns from your Shopify store.

WooCommerce

Coming soon

Order and refund sync for WooCommerce.

BigCommerce

Coming soon

Order and refund sync for BigCommerce.

Salesforce Commerce Cloud

Coming soon

Enterprise commerce integration.

Magento

Coming soon

Order and refund sync for Adobe Commerce.

Payments

Stripe payouts

Coming soon

Automated partner payouts through Stripe Connect.

Data

Webhooks

Available

Get notified when transactions change status.

Conversion API

Report each order with the click ID that was passed to your site as bw_click_id.

This is a demo test key for the sandbox. Production keys are shown once, stored hashed, and scoped to your organization.bw_test_lumen_demo
Send a conversion
curl -X POST https://www.brandweavenetwork.com/api/v1/conversions \
  -H "Authorization: Bearer bw_test_lumen_demo" \
  -H "Content-Type: application/json" \
  -d '{
    "order_id": "1042",
    "click_id": "clk_…",
    "revenue": 349.00,
    "currency": "USD",
    "customer_type": "new",
    "country": "US",
    "items": [{ "sku": "GLASSES", "price": 349.00, "quantity": 1 }]
  }'
Or fire the tracking pixel on your confirmation page
<img src="https://www.brandweavenetwork.com/api/v1/pixel?mid=lumen&click_id=clk_…&order_id=1042&revenue=349.00&currency=USD"
     width="1" height="1" alt="" style="display:none" />
  • Re-sending the same order_id is safe: the original transaction is returned.
  • You can only report conversions for clicks on links where your brand is the paying brand.
  • The pixel can't authenticate the sender, so pixel transactions are tagged source: pixel for review. Prefer the API.