Two BitDigital
AboutServicesWorkProductsInsightsStart a Project
Business Verified· 18 Apr 2026
Tech Provider Verified· 18 Apr 2026

Building with Meta's Platform

Two Bit Digital is a verified Meta Tech Provider — both business-verified and access-verified. We build production integrations across WhatsApp Business API, Meta Conversions API, Instagram Graph API, and Meta Business Suite on behalf of clients across the UK, US, Australia, and Pakistan.

Start a ProjectView Integrations ↓

Business Verification

Verified

Two Bit Digital Ltd — Companies House #14710072

Tech Provider Access

Verified

Authorised to access Meta business assets on behalf of clients

Verified Since

18 April 2026

Meta Business Manager · app.business.meta.com

API Surface

What we build with Meta

As a verified Tech Provider, Two Bit Digital can access and integrate Meta's full commercial API surface on behalf of client businesses. Every integration is built for production — authenticated, rate-limit-aware, and error-resilient.

💬

WhatsApp Business API

Send transactional messages, event notifications, ticket confirmations, and support conversations at scale via Meta Cloud API — critical infrastructure in markets where WhatsApp is the primary communication channel.

📊

Meta Conversions API

Server-side event tracking that bypasses browser-level blockers and iOS restrictions. Sends purchase, lead, and custom events directly from the server to Meta — higher match rates, more accurate attribution.

🔑

Facebook & Instagram Login

Social authentication via OAuth 2.0 for web and mobile applications. Reduces friction at sign-up, enables permission-scoped access to social profiles and pages, and simplifies identity management.

📱

Instagram Graph API

Content publishing, inbox management, comment moderation, and insights access for business accounts. Used in social management tooling and client-facing dashboards.

💰

Meta Marketing API

Programmatic ad campaign creation, management, and reporting. Enables automated budget optimisation, audience management, and performance dashboards built directly into client platforms.

🏢

Meta Business Suite API

Manage pages, ad accounts, and business assets on behalf of client businesses. As a verified Tech Provider, Two Bit Digital can request and manage access to client Meta Business assets programmatically.

In Production

Live Meta integrations in Tikkit X

Tikkit X — Two Bit Digital's event ticketing platform for Pakistan — uses Meta's platform as a core part of its communication and marketing infrastructure. WhatsApp has over 80% penetration in Pakistan, making the WhatsApp Business API essential, not optional.

💬WhatsApp TicketingLIVE

Every ticket purchase on Tikkit X triggers a WhatsApp message to the attendee — confirmation, QR code, and event details — delivered via Meta Cloud API Edge Functions. No SMS, no email dependency.

  • Ticket confirmation with HMAC-SHA256 QR code
  • Event reminder messages (24h and 2h before)
  • Real-time check-in notifications for organisers
  • Refund and cancellation alerts
📊Conversions API + PixelLIVE

Tikkit X fires purchase and registration events server-side via the Conversions API, deduped against client-side Meta Pixel events. This gives event organisers accurate attribution for Facebook and Instagram ad campaigns driving ticket sales.

  • Server-side Purchase events (bypasses iOS restrictions)
  • InitiateCheckout and AddToCart client-side via Pixel
  • Event deduplication via event_id matching
  • Hashed PII (email, phone) for higher match rates
Integration Patterns

How we implement it

Both examples are taken from production patterns used in Tikkit X. All user data sent to Meta is SHA-256 hashed before transmission — we never send raw PII to third-party APIs.

WhatsApp Business API — Ticket Confirmation

// WhatsApp ticket confirmation — Meta Cloud API (Node.js / Edge Function)
const sendTicketConfirmation = async ({
  recipientPhone,
  attendeeName,
  eventName,
  ticketCode,
}: TicketConfirmationParams) => {
  const res = await fetch(
    `https://graph.facebook.com/v19.0/${process.env.WA_PHONE_NUMBER_ID}/messages`,
    {
      method: 'POST',
      headers: {
        Authorization: `Bearer ${process.env.WHATSAPP_TOKEN}`,
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        messaging_product: 'whatsapp',
        to: recipientPhone,
        type: 'template',
        template: {
          name: 'ticket_confirmation',
          language: { code: 'en' },
          components: [
            {
              type: 'body',
              parameters: [
                { type: 'text', text: attendeeName },
                { type: 'text', text: eventName },
                { type: 'text', text: ticketCode },
              ],
            },
          ],
        },
      }),
    }
  )
  return res.json()
}

Conversions API — Server-Side Purchase Event

// Meta Conversions API — server-side purchase event
// Fires from the server, bypasses ad blockers and iOS tracking restrictions.
const trackPurchase = async ({
  hashedEmail,
  hashedPhone,
  orderTotal,
  orderId,
  clientIp,
  userAgent,
}: PurchaseEventParams) => {
  const res = await fetch(
    `https://graph.facebook.com/v19.0/${process.env.META_PIXEL_ID}/events`,
    {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({
        data: [
          {
            event_name: 'Purchase',
            event_time: Math.floor(Date.now() / 1000),
            event_source_url: 'https://tikkitx.com/checkout',
            action_source: 'website',
            user_data: {
              em: hashedEmail,          // SHA-256 hashed
              ph: hashedPhone,          // SHA-256 hashed
              client_ip_address: clientIp,
              client_user_agent: userAgent,
            },
            custom_data: {
              currency: 'PKR',
              value: orderTotal,
              order_id: orderId,
              content_type: 'product',
            },
          },
        ],
        access_token: process.env.META_CONVERSIONS_TOKEN,
      }),
    }
  )
  return res.json()
}
Client Engagements

Meta integrations as a service

As a verified Tech Provider, Two Bit Digital can request programmatic access to client Meta Business assets — ad accounts, pages, pixels, and WhatsApp numbers — and build integrations directly into their platforms.

WhatsApp API Setup

Full WhatsApp Business API onboarding, phone number registration, message template submission and approval, and production integration into your platform or CRM.

Conversions API Implementation

Server-side event pipeline connecting your checkout, CRM, or backend to Meta — deduped against any existing Pixel implementation for maximum attribution accuracy.

Meta Pixel Audit & Setup

Full Pixel implementation review, standard and custom event configuration, and integration with Google Tag Manager or direct code instrumentation.

Graph API Integrations

Custom integrations with Facebook Pages, Instagram Business accounts, and Meta Business Suite — dashboards, content pipelines, inbox tooling, and reporting.

Business Verified
Tech Provider Verified

Need a Meta integration?

Whether it's WhatsApp automation, Conversions API setup, or a full Meta Business Suite integration — we've built it in production and can do it for you.

Start a Projecttwobitdigital.com →