FLOWLOGIC
curriculum
module /flow-testing-and-release

Flow Testing & Release: Versioning, Golden Runs & Safe Rollout

lvl 2requires: automation-engine-corestatus: open

outcome

Version, test and release changes to a live client automation without writing bad data, and hand it over so someone else can run it.

units

  1. U1

    Versions & publishing

    draft vs published, in-flight runs, rollback

  2. U2

    A staging that is not production

    separate connections, sandbox destinations

  3. U3

    Golden runs

    real payloads pinned to expected output

  4. U4

    Releasing safely

    one change, watch, roll back first

  5. U5

    Handover

    runbook, alerts, credential owners

sandbox validation — how you pass

Build the flow in your engine and run it. When it works, export the flow JSON and send this payload to your unique validation URL. Headers and structure are verified server-side; the module flips to COMPLETED only on a correct hit.

POST https://learnflowlogic.com/api/sandbox/{your-webhook-id}
X-FlowLogic-Signature: hmac-sha256=<hex digest of the raw body>

{
  "module": "flow-testing-and-release",
  "artifact": {
    "flow_id": "<flow id from your engine URL>",
    "run_evidence": { "status": 200, "attempts": 1 }
  }
}

Sign in to get your unique validation URL and signing secret.

zero-cost sandbox // flow testing & release: versioning, gold