AdvancedIntegrations

Integrations

Connect OWL.BiKe to third-party services for seamless workflows.

{
  "event": "ticket.created",
  "ticket": {
    "id": "tck_123",
    "title": "Order Issue",
    "customer": {
      "email": "user@example.com"
    }
  }
}

Overview

OWL.BiKe integrates with popular e-commerce platforms, CRM systems, and other tools to streamline your support workflows. Use webhooks for real-time notifications or embed custom JavaScript for tailored experiences. Start with pre-built connectors or build your own.

E-commerce Platform Sync

Sync OWL.BiKe with your store to automatically create tickets from orders or refunds.

Install the OWL.BiKe app from the Shopify App Store. Grant permissions for orders and customers.

// Shopify webhook handler
const handleOrderCreated = async (order) => {
  await fetch('https://api.example.com/v1/tickets', {
    method: 'POST',
    headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` },
    body: JSON.stringify({
      title: `New Order #${order.id}`,
      customerEmail: order.customer.email
    })
  });
};

Test integrations in sandbox mode first to avoid affecting live data.

CRM and Ticketing Tools

Link OWL.BiKe to your CRM for bidirectional sync of customer interactions.

Webhook Setup

Set up webhooks to push OWL.BiKe events to your backend.

Create Webhook

Navigate to OWL.BiKe Dashboard > Integrations > Webhooks. Click "New Webhook".

path
eventsarray
Required

Events like ticket.created, ticket.updated.

query
secretstring

Optional HMAC signature secret.

Configure Endpoint

Enter your endpoint URL, e.g., https://your-webhook-url.com/owl-bike.

Verify Payload

OWL.BiKe sends a test event. Respond with 200 OK.

Custom JavaScript Embeds

Embed OWL.BiKe widgets directly into your site.

<!-- Help widget -->
<script src="https://js.owl.bike/latest.js"></script>
<div id="owl-bike-widget"></div>
<script>
  OWLBiKe.init('YOUR_API_KEY', { container: '#owl-bike-widget' });
</script>

Replace YOUR_API_KEY with your actual key from OWL.BiKe Dashboard > API Keys. Never expose it client-side in production.

Next Steps

Quick Wins
2

Shopify Sync

Enable order tickets

Webhook Test

Verify events flow

In Progress
1

Zendesk Link

Two-way sync setup

Dec 15, 2024
Planned
1

Slack Notifications

Alert team on new tickets