Backend Integration Guide

A comprehensive guide to connecting your application to the Moxiz infrastructure.

1

Obtain API Keys

Navigate to your dashboard to generate your secret and public keys. Ensure you use sk_test for development.

2

Initialize the Client

const moxiz = require('moxiz')('sk_test_...');
3

Set Up Webhooks

Configure your receiver endpoint in the dashboard and verify the signing secret for each event.

Idempotency

Always check the Idempotency-Key header.

Security

Validate HMAC signatures on all requests.