> ## Documentation Index
> Fetch the complete documentation index at: https://docs.go.gbgplc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Create and manage customer journeys in GBG GO using modules, routing, evaluation rules, and publishing to preview or production environments.

export const VersionWarningBanner = () => {
  const [latestUrl, setLatestUrl] = useState(null);
  useEffect(() => {
    if (typeof window === "undefined") return;
    const {pathname, hash, search} = window.location;
    if (!pathname.includes("/go-v1/")) return;
    setLatestUrl(`${pathname.replace("/go-v1/", "/go-v2/")}${search}${hash}`);
  }, []);
  if (!latestUrl) return null;
  return <div className="not-prose my-6 rounded-xl border border-amber-500/30 bg-amber-500/10 px-4 py-3 text-sm text-gray-800 dark:text-gray-100">
      ⚠️ You are viewing the <strong>GBG GO v1</strong> documentation.
      <a href={latestUrl} className="ml-2 font-medium underline text-amber-700 dark:text-amber-400 hover:text-amber-800 dark:hover:text-amber-300">
        View the latest version (v2) →
      </a>
    </div>;
};

<VersionWarningBanner />

Journeys are structured processes that guide your end-users through verification workflows such as identity verification, document processing, and approvals. The GBG GO platform allows you to create, manage, and deploy these journeys to securely onboard customers while preventing fraud.

Each journey consists of modules that handle specific tasks, including identity verification and fraud detection.

## Key components

* **Modules** - Functional components that perform specific verification tasks
* **Routing** - Controls how customers move through a journey based on verification results
* **Evaluation** - Decision points that determine whether to accept, reject, or flag users for review
* **Publishing** - Deploying journeys to Preview (for testing) or Production (for live use)

## User roles in journeys

* **Business users** design and configure customer journeys in the GBG GO platform, defining workflows, adding verification modules, and publishing journeys
* **Developers** integrate with the API to start journeys, retrieve tasks, and submit user data

## Journey workflow

<Steps>
  <Step title="Step 1">
    [Create a journey using templates or from scratch](/docs/go-v1/platform/journey-builder/create-journey)
  </Step>

  <Step title="Step 2">
    [Configure modules and decision logic](/docs/go-v1/platform/journey-builder/configure-module)
  </Step>

  <Step title="Step 3">
    [Set up routing to define how users progress through verification](/docs/go-v1/platform/journey-builder/set-up-routing)
  </Step>

  <Step title="Step 4">
    [Add evaluation steps to determine outcomes](/docs/go-v1/platform/journey-builder/set-up-evaluation)
  </Step>

  <Step title="Step 5">
    [Publish the journey for testing or production use](/docs/go-v1/platform/journey-builder/publish-journey)
  </Step>

  <Step title="Step 6">
    [API integration by developers](/docs/go-v1/developer-integration/overview)
  </Step>
</Steps>
