Solution Vertical • marketplaces
Transactional Communications for Two-Sided Marketplaces
Keep buyers and sellers synced with automated multi-recipient notification templates.
Application Event Trigger
Notify sellers of new inquiries or orders and provide buyers with order confirmations simultaneously using optional CC/BCC capabilities.
Trigger: Buyer submits a booking or purchase request on marketplace.
Integration Pipeline Flow
Step 01
Marketplace Event
Booking confirmed between buyer and merchant.
Step 02
Histeria API Call
Pass recipient 'buyer@example.com' with cc 'seller@example.com'.
Step 03
Template Rendering
Merges marketplace booking code and detail variables.
Step 04
Delivery Tracking
Monitor status changes in real-time.
Primary Use Cases
New Order Notification for Sellers
Booking Confirmation for Buyers
Payout Received Notice
Dispute & Support Ticket Alert
Developer API Integration Code
POST /v1/emails/sendfetch('https://api.histeria.dev/v1/emails/send', {
method: 'POST',
headers: {
'x-api-key': 'ck_live_marketplace_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
templateId: 'booking-notification',
to: 'buyer@example.com',
cc: ['seller@example.com'],
data: {
serviceName: 'Graphic Design Project',
bookingId: 'BK-7712'
}
})
});