Integrations
Send Brand Weave the orders your partners drive. Server-side is preferred; the pixel is the quickest way to start.
Tracking
Conversion API
ConnectedServer-to-server conversion events. The recommended way to attribute sales.
Tracking pixel
ConnectedFire a 1×1 pixel on your confirmation page. Quickest to install.
Commerce
Shopify
Coming soonAuto-send orders and returns from your Shopify store.
WooCommerce
Coming soonOrder and refund sync for WooCommerce.
BigCommerce
Coming soonOrder and refund sync for BigCommerce.
Salesforce Commerce Cloud
Coming soonEnterprise commerce integration.
Magento
Coming soonOrder and refund sync for Adobe Commerce.
Payments
Stripe payouts
Coming soonAutomated partner payouts through Stripe Connect.
Data
Webhooks
AvailableGet 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_demoSend 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¤cy=USD"
width="1" height="1" alt="" style="display:none" />- Re-sending the same
order_idis 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: pixelfor review. Prefer the API.