Skip to main content
If you integrated directly with Visa Intelligent Commerce (VIC) or Mastercard Agent Pay — or both — Sly collapses the two interfaces into one. You keep your merchant-side processor (Stripe, Adyen), add Sly’s Cards surface, and stop maintaining two divergent Web Bot Auth implementations.

The pain you’re trying to solve

Direct card-network integration means:
  • Separate VIC and Agent Pay SDKs / protocols
  • Separate Web Bot Auth signing logic per network
  • Separate network-registry registration and credential rotation
  • Separate dispute flows (each network has its own evidence rules)
  • Ongoing network-program participation requirements
For most partners building agent-driven commerce, this is more than their team should maintain.

What Sly does for you

Underneath, Sly still interacts with each network’s primitives — you just don’t see the differences.

Concept mapping

Compose: Sly on top of your existing processor

Your existing card processor (Stripe, Adyen) handles:
  • PAN tokenization
  • Fraud signals
  • Settlement to your merchant account
  • Card-network fees
Sly adds:
  • Agent identity verification via Web Bot Auth
  • Unified interface across VIC and Agent Pay
  • Per-agent spending policies on top of card-level controls
  • Dispute workflow unification

Step-by-step: wrapping your current integration

1. Connect your processor to Sly

Same OAuth flow used for e-commerce:
Your existing Stripe or Adyen processing becomes the funding rail for card transactions routed through Sly.

2. Migrate your card vault

If you already tokenized cards at your processor, vault them into Sly by referencing the processor tokens:
No new PAN collection needed — processor tokens transfer over.

3. Replace direct Web Bot Auth with Sly

Before (example pseudocode for VIC direct):
After:
One call per authorization, regardless of which network you’re speaking to.

4. Migrate dispute handling

Your two dispute flows → one. Existing open disputes at the networks keep flowing through their original channels until resolution; new disputes register with Sly:
Sly presents evidence to the network through the same compelling-evidence rules you were already satisfying.

5. Layer on agent-specific controls

Once cards are vaulted and verification goes through Sly, you unlock agent-level controls networks don’t provide:
And wallet-level policies apply per-agent regardless of which card is used:

What stays direct

  • PCI compliance — your processor holds PAN; Sly never sees it
  • Card issuance (if you issue virtual cards) — keep using Stripe Issuing or equivalent
  • Network program enrollment — you’re still a VIC / Agent Pay enrolled merchant; Sly doesn’t replace that enrollment

What moves to Sly

  • All runtime interactions with VIC / Agent Pay — you call Sly; Sly handles network-level API
  • Dispute flow — one queue, one UI, one response pipeline
  • Agent-level spending controls — per-agent, not just per-card
  • Analytics across networks — unified view of VIC + Agent Pay + other rails

Network program requirements

You still need to be enrolled in VIC and/or Agent Pay. Check status:
Returns each network’s enrollment status for your tenant. Sly assists with enrollment but doesn’t bypass it.

Migration timeline

Partners typically run both in parallel for a week while confirming parity, then cut over fully.

Gotchas

  • Network reason codes — Sly maps network-specific reason codes to a common enum. The underlying network evidence is preserved, but your analytics keys off Sly’s enum. If you had dashboards keyed off network-specific codes, re-key them.
  • Settlement file formats — your processor’s payout files are unchanged; Sly reconciles them for you. If you had custom parsing, you can retire it or keep it as a double-check.
  • Direct network outages — Sly doesn’t route around them, but the /v1/cards/networks endpoint shows you live status so you fail fast.

See also