# ═══════════════════════════════════════════════════════════════ # wBizManager E-Invoicing Webhook Configuration # Wragby Business Solutions and Technologies Limited # ═══════════════════════════════════════════════════════════════ # ── Environment Settings ────────────────────────────────────── ENVIRONMENT=production APP_NAME=wBizManager-EInvoicing APP_VERSION=3.2.1 LOG_LEVEL=info TIMEZONE=Africa/Lagos # ── API Gateway Configuration ───────────────────────────────── API_BASE_URL=https://api.wbizmanager.com/v3 API_KEY=wbm_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx API_SECRET=wbm_sec_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx API_TIMEOUT_MS=30000 API_RETRY_COUNT=3 API_RETRY_DELAY_MS=1000 # ── Webhook Endpoints ───────────────────────────────────────── WEBHOOK_INVOICE_CREATED=https://your-domain.com/webhooks/invoice/created WEBHOOK_INVOICE_APPROVED=https://your-domain.com/webhooks/invoice/approved WEBHOOK_INVOICE_PAID=https://your-domain.com/webhooks/invoice/paid WEBHOOK_INVOICE_CANCELLED=https://your-domain.com/webhooks/invoice/cancelled WEBHOOK_PAYMENT_RECEIVED=https://your-domain.com/webhooks/payment/received WEBHOOK_PAYMENT_FAILED=https://your-domain.com/webhooks/payment/failed # ── Webhook Security ────────────────────────────────────────── WEBHOOK_SECRET=whsec_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx WEBHOOK_SIGNATURE_HEADER=X-WBM-Signature-256 WEBHOOK_TOLERANCE_SECONDS=300 # ── Tax Compliance ──────────────────────────────────────────── TAX_AUTHORITY_ENDPOINT=https://tax.firs.gov.ng/api/v2/e-invoice TAX_TIN=00000000-0001 VAT_RATE=7.5 WHT_RATE=5.0 STAMP_DUTY_THRESHOLD=10000 # ── Database Connection ─────────────────────────────────────── DB_HOST=localhost DB_PORT=5432 DB_NAME=wbizmanager_einvoice DB_USER=wbm_app DB_PASSWORD=xxxxxxxxxxxxxxxx DB_SSL_MODE=require DB_POOL_SIZE=20 # ── Redis Cache ─────────────────────────────────────────────── REDIS_URL=redis://localhost:6379/0 REDIS_PREFIX=wbm:einvoice: REDIS_TTL_SECONDS=3600 # ═══════════════════════════════════════════════════════════════ # © 2026 Wragby Business Solutions and Technologies Limited # www.wragbysolutions.com | info@wragbysolutions.com # ═══════════════════════════════════════════════════════════════