Cloud Development Environment

Build on the platform
from the inside out.

A full cloud IDE runs inside AcceptanceOne — write, test and deploy custom logic directly against live payment, risk and CRM data, with zero local setup.

See what you can build
workspace / fraud-rule-engine.acceptanceone.dev
Connected to production sandbox
risk-scorer.ts collections-agent.ts
import { AcceptanceOne } from "@a1/sdk";

export const riskScorer = AcceptanceOne.agent({
  trigger: "transaction.authorized",
  run: async (tx) => {
    const signals = await a1.risk.score(tx, {
      factors: ["velocity", "device", "kyb"]
    });

    if (signals.score > 80) return a1.actions.block(tx);
    return a1.actions.clear(tx);
  }
});|

$ a1 deploy risk-scorer.ts --env sandbox

→ build complete in 1.2s · deployed to sandbox-us-east · 0 errors

What you can build

Every layer of AcceptanceOne, extendable.

Custom risk agents

Write and deploy your own scoring logic against live transaction streams.

Webhooks & triggers

React to any platform event — chargebacks, deal stages, payouts — in code.

Embedded UI blocks

Ship custom widgets straight into the AcceptanceOne console for your team.

One-click deploys

Push from sandbox to production with instant rollback, no CI to manage.

Why it's cloud-based

No local setup. No sync drift. No sandbox that lies.

  • Every workspace runs against real platform data, not a mocked API.
  • Share a workspace URL — teammates edit the same environment live.
  • Version history and rollback are built in, no separate Git hosting required.
  • Access from any browser — the IDE is the same wherever you open it.
Active workspaces
fraud-rule-engine 2 collaborators
onboarding-webhooks 1 collaborator
crm-sync-legacy idle · 4d

Your next integration starts in a browser tab.

Spin up a workspace and ship your first custom agent in minutes.