0Bit Documentation

Checkout launch review

Confirm what must be true before positioning a 0Base checkout flow as launchable.

Checkout launch review is the production gate for exposing 0Base to customers. It brings together merchant eligibility, capability rendering, checkout UX, backend status handling, webhook recovery, settlement reporting, support scripts, and finance closeout before real users depend on the flow.

0Base availability is account-gated. Build against capabilities, merchant status, environment mode, and settlement settings instead of assuming that every payment method, asset, network, cadence, or refund path is enabled for every merchant.

0Base product docs and API details

These pages are public product guidance for merchant and platform developers. 0Base endpoint-level API pages are not published for partners yet; use this product documentation to understand the workflow, records, and launch boundaries.

End-to-end picture

This flow is intentionally shown as product infrastructure: Merchant enabled -> Capabilities reviewed -> Checkout UX approved -> Webhook tested -> Ledger verified -> Launch decision. The merchant application can make the customer experience simple, but the backend should keep each step visible enough for retries, support, and finance closeout.

Production contract

BoundaryWhat to buildWhy it matters
Merchant orderCreate the merchant-side order before creating a 0Base object.Your order id is the durable business reference.
Server-side createCreate checkout, link, invoice, or payment intent from the backend with a secret key.Prevents browser code from owning money state.
IdempotencySend an Idempotency-Key on state-changing writes.Makes retries safe after timeouts or double-clicks.
Status sourceRead status from API responses, signed events, or reports.Redirects and browser callbacks are not settlement proof.
ReconciliationStore object ids, event ids, ledger ids, report filters, and timestamps.Support and finance can reconstruct the lifecycle.

Status and state handling

StateWhat it meansDeveloper action
ReadyAll required account, capability, webhook, and ledger checks pass.Allow controlled launch.
BlockedA required gate is missing or ambiguous.Do not expose live checkout.
DegradedA non-critical support or analytics feature is incomplete.Launch only if the risk is accepted.
Rolled backProduction behavior differs from approval.Disable the public checkout path and preserve records.

Status handling should be strict even when the customer UI is friendly. Store raw 0Base statuses, map them to customer-safe labels at the edge, and keep the merchant order state separate from the payment object state. That separation lets you change customer copy without corrupting reconciliation.

Example implementation record

This is an application-side record shape for checkout launch readiness. Keep exact request and response fields aligned with your enabled account contract when 0Base API access is released for your partner account; the point of this record is to keep product, support, and finance joined in your system.

{
  "review_id": "base_launch_2026_06",
  "merchant_id": "mrc_2048",
  "approved_payment_methods": [
    "crypto_wallet"
  ],
  "approved_networks": [
    "network_from_capabilities"
  ],
  "webhook_test": "passed",
  "ledger_test": "passed",
  "decision": "controlled_launch"
}

Operational scenario

A merchant should be able to run a test order from checkout creation through notification and report export before the checkout button appears to customers. If any part of that chain is missing, the launch risk is not a front-end issue; it is an operations issue.

In practice, production 0Base integrations make the happy path fast while keeping exceptions predictable: retries return the same object, delayed notifications can be repaired, expired sessions do not become mystery payments, and finance exports can be traced back to the original merchant order.

Before and after

Before 0BaseWith 0Base
Launch meant the checkout page loaded.Launch means create, pay, notify, fulfill, ledger, export, and support all work.
Availability was assumed from product marketing.Availability is checked from the merchant account and capabilities.
Only success paths were tested.Expired, failed, duplicate, delayed webhook, and report paths are tested.
Finance joined after launch.Finance signs off on ledger and export shape before launch.

Evidence to keep

EvidenceWhat to store
Access packetMerchant id, environment, keys issued, enabled product surface.
Capability packetPayment methods, assets, networks, settlement currencies, min/max limits.
Webhook packetEndpoint URL, signature verification result, replay test, failed delivery procedure.
Finance packetSettlement settings, ledger sample, transaction report sample, export owner.
Rollback packetFeature flag, affected routes, support copy, customer communication path.

This evidence is what makes the integration supportable at institutional scale. A developer should not need private operational knowledge to answer basic questions such as what the customer saw, which object owns the state, which event announced the change, and which ledger or report row closed the money movement.

Failure modes and recovery

Failure modeRecovery
Checkout creates but notifications failKeep checkout disabled until signature and replay work.
Unsupported asset visibleRemove from UI and verify capability mapping.
Ledger sample missingDo not promise finance closeout until reports are available.
Production key used in test flowRotate keys and rebuild environment separation.

Recovery should be idempotent and explainable. When the system is uncertain, preserve the current raw status, read the latest object state, attach a support reference, and avoid changing fulfillment or finance state until a trusted terminal condition is present.

API adjacency

API areaUse it for
GET /capabilities/payment_methodsLaunch payment-method eligibility.
POST /webhooks/testWebhook setup validation.
GET /reports/transactionsTransaction closeout sample.
GET /reports/settlementSettlement closeout sample.

For endpoint-level implementation, use the API reference as the source of truth for fields, enums, authentication, idempotency behavior, pagination, and response examples.

Why this matters for merchants and customers

Launch review protects customers from half-finished payment surfaces. A checkout button should only appear when capabilities, webhooks, failure handling, settlement records, support scripts, and rollback behavior are ready.

At scale, the value of 0Base is not only that a payment can be created. The value is that the payment can be explained later: what the customer saw, which account capabilities allowed it, which backend state changed, which notification delivered it, and which ledger or report row closed it.

Worked API path

The example below shows the implementation shape for this page. Use merchant-specific capabilities, account settings, and API responses in production; the ids and values here are illustrative.

curl -X POST https://base-api-sandbox.0bit.app/v1/webhooks/test \
  -H "Authorization: Bearer $OBIT_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: ord_100045:base:v1" \
  -d '
{
    "eventType": "payment_intent.succeeded",
    "intentId": "pi_test_456"
}'

Example response shape:

{
  "object": "webhook_delivery",
  "id": "whd_test_launch",
  "event_id": "evt_test_launch",
  "event_type": "payment_intent.succeeded",
  "intent_id": "pi_test_456",
  "status": "pending",
  "attempts": 0
}

Implementation checkpoints:

  • Read account and environment state before rendering or launching the product surface.
  • Attach the returned object id to the same business record.
  • Record the request id, idempotency key, raw status, and environment.
  • Use webhook and report reads to repair delayed or missed state changes.

Data join map

This join map is the reason 0Base is infrastructure rather than a payment button. A merchant can change checkout UX, support tooling, or finance exports without losing the chain from customer action to backend state and settlement evidence.

Operator runbook

SignalCheck firstAction
Customer reports payment not updatingLook up merchant order id, 0Base object id, raw status, and latest webhook delivery.Read current object state before changing fulfillment.
Webhook delivery failedCheck delivery id, event id, attempts, last error, and handler logs.Fix the handler, replay once, and dedupe by event id.
Finance cannot match a rowCompare client reference, intent id, settlement id, report period, and export row.Move the item to reconciliation queue instead of closing by amount/date.
Launch test failsIdentify whether the failure is capability, key, webhook, status, or report related.Block launch for that scope until the failing layer has a passing evidence record.

The runbook should be available to support and finance teams before launch. A developer integration is not complete if only engineering can explain the state of a customer payment.

Developer checklist

  • Run one success path and four failure paths.
  • Verify support can search by order id and intent id.
  • Check all customer-visible copy for account-gated claims.
  • Confirm webhook handler is idempotent.
  • Confirm settlement settings are reviewed.
  • Document rollback before launch.

On this page