Happy Returns
EcosystemPayPal-owned boxless return drop-off network with over 10,000 US locations, enabling frictionless in-person returns for e-commerce brands without requiring the original box or a printer.
Happy Returns is a returns logistics network owned by PayPal that operates return bars at major retail partners including Ulta, PetSmart, and Staples. Shoppers drop off items without packaging or a printed label. Happy Returns consolidates returns before shipping them back to merchants in bulk, cutting reverse logistics costs significantly.
For AI agents managing post-purchase flows, Happy Returns exposes a returns API that accepts return requests from UCP-identified shoppers and responds with a QR code linked to the nearest drop-off location. An agent with order management scope can generate this QR code and surface it to the shopper without requiring any browser navigation.
The network density of Happy Returns makes it practical for agents operating in US markets. With over 10,000 locations, most US shoppers are within a short drive of a return bar. This removes the shipping label problem that makes automated returns friction-heavy in other networks.
Why This Matters for UCP
Happy Returns provides boxless drop-off return infrastructure that agents can trigger via API after a UCP-verified purchase, generating QR codes for shoppers without requiring any browser interaction or printed labels.
UCP Capabilities
UCP Endpoint
Ecosystem — Endpoint not yet publicly available
Integration Example
// Happy Returns API: initiate a return for a UCP-verified order
// Agent uses UCP identity token to prove shopper consent
const HAPPY_RETURNS_API = 'https://api.happyreturns.com/v1';
async function initiateAgentReturn(ucpOrderId: string, identityToken: string, items: Array<{ sku: string; quantity: number; reason: string }>) {
// Step 1: Validate return eligibility
const eligibility = await fetch(`${HAPPY_RETURNS_API}/eligibility`, {
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.HAPPY_RETURNS_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({ order_id: ucpOrderId, items }),
}).then(r => r.json());
if (!eligibility.eligible) {
throw new Error(`Return not eligible: ${eligibility.reason}`);
}
// Step 2: Create return and get QR code
const returnRequest = await fetch(`${HAPPY_RETURNS_API}/returns`, {
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.HAPPY_RETURNS_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
order_id: ucpOrderId,
ucp_identity_token: identityToken,
items,
return_method: 'drop_off',
}),
}).then(r => r.json());
// QR code surfaces to shopper via agent UI
return {
return_id: returnRequest.return_id,
qr_code_url: returnRequest.qr_code_url,
nearest_bar: returnRequest.nearest_drop_off_location,
refund_eta: returnRequest.estimated_refund_date,
};
}Category
Returns & Reverse LogisticsUCP Status
EcosystemTags
Pricing
paid
Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
M. Lee
Backend Developer · Mar 3, 2026
Works well for our use case. The documentation is accurate and the implementation matches what the spec describes.
R. Kapoor
Platform Engineer · Jan 15, 2026
Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.
J. Santos
Senior Engineer · Feb 28, 2026
Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.
9 other tools in Returns & Reverse Logistics
Is this your tool? Claim this listing