[Shopify Collective](https://www.shopify.com/collective) is a platform that enables seamless collaboration between Shopify merchants, allowing them to connect and sell each other’s products, all within the Shopify ecosystem. In a merchant to merchant network, merchants often expand their product offerings by partnering with other merchants to source and sell products. Shopify Collective simplifies this process by connecting retailers with suppliers, enabling seamless collaboration without the need for manual workflows. With Shopify Collective, retailer merchants can expand their catalogs and offer new products to their customers while supplier merchants expand their product reach and take care of shipping. In this guide you'll learn: 1. The different ways you can handle returns via Collective 2. How to use Shopify’s API and webhook capabilities to integrate your existing return workflows 3. How the refund processing is handled in each scenario ## Return handling options Retailers can choose how to handle returns for Collective items by selecting one of the following options: **Retailer generates label**, **Supplier generates label**, or **No action**. Retailers will receive notifications of new returns via the [returns/approve](/docs/api/webhooks?reference=toml#list-of-topics-returns/approve) or [returns/request](/docs/api/webhooks?reference=toml#list-of-topics-returns/request) webhook, depending on how the return was created. ## Retailer generates label When this option is selected: - Collective creates a return on the corresponding supplier order upon receiving the [returns/approve](/docs/api/webhooks?reference=toml#list-of-topics-returns/approve) webhook. Note: Syncing only occurs once the return is approved. - After the supplier receives the returned item and processes a refund, Collective will restock the item on the retailer return and close it. Retailers receive notifications of these events via the [reverse_fulfillment_orders/dispose](/docs/api/webhooks?reference=toml#list-of-topics-reverse_fulfillment_orders/dispose) and [returns/close](/docs/api/webhooks?reference=toml#list-of-topics-returns/close) webhook topics. Refund Preferences: - If retailers select **Automatically refund the customer**, Collective processes the refund for returned items. Retailers will be notified via the [refunds/create](/docs/api/webhooks?reference=toml#list-of-topics-refunds/create) webhook. This streamlines the refund process by minimizing merchant intervention, but limits the types of refund policies that can be offered. - If automatic refunds are not selected, retailers should handle customer refunds (using [refundReturn](/docs/api/admin-graphql/latest/mutations/returnRefund)) upon receiving the [returns/close](/docs/api/webhooks?reference=toml#list-of-topics-returns/close) webhook. This will require more operational work and potentially longer processing times, but can allow merchants to apply specific refund policies not possible with automatic refunds. ## Supplier generates label When this option is selected: - When a retailer order receives a return request or a new approved return opens, Collective requests a return from the supplier and marks the retailer return as approved if it was requested. Retailers are notified via the [returns/approve](/docs/api/webhooks?reference=toml#list-of-topics-returns/approve) webhook. - Once the supplier approves the return and uploads the label, it syncs to the retailer order. The customer receives the shipping label via email, and retailers are notified using the [reverse_deliveries/attach_deliverable](/docs/api/webhooks?reference=toml#list-of-topics-reverse_deliveries/attach_deliverable) webhook. - After the supplier refunds the return, Collective will restock the item on the retailer return and close it, notifying retailers through the [reverse_fulfillment_orders/dispose](/docs/api/webhooks?reference=toml#list-of-topics-reverse_fulfillment_orders/dispose) and [returns/close](/docs/api/webhooks?reference=toml#list-of-topics-returns/close) webhook topics. Refund Preferences: - If retailers select **Automatically refund the customer**, Collective processes the refund for returned items. Retailers will be notified via the [refunds/create](/docs/api/webhooks?reference=toml#list-of-topics-refunds/create) webhook. This streamlines the refund process by minimizing merchant intervention, but limits the types of refund policies that can be offered. - If automatic refunds are not selected, retailers should handle customer refunds (using [refundReturn](/docs/api/admin-graphql/latest/mutations/returnRefund)) upon receiving the [returns/close](/docs/api/webhooks?reference=toml#list-of-topics-returns/close) webhook. This will require more operational work and potentially longer processing times, but can allow merchants to apply specific refund policies not possible with automatic refunds. ## No Action When this option is selected: - Collective will not manage the return after it is created on the retailer’s order. No return will be created on the supplier order, and any necessary refund requests must be handled manually. - Once the retailer processes the return, they should create a refund (using [refundReturn](/docs/api/admin-graphql/latest/mutations/returnRefund)), restock the item (using [reverseFulfillmentOrderDispose](/docs/api/admin-graphql/latest/mutations/reverseFulfillmentOrderDispose)), and close the return (using [returnClose](/docs/api/admin-graphql/latest/mutations/returnClose)).