Caller memory — remember the last request

Cross-run memory scoped to this workflow: append what the caller asked for, then recall the recent history — run it several times and the history grows.

What’s inside

4 nodes — every type links to its full reference page.

StepNodeType
Incoming request Inject input.inject
Remember Memory storage.memory
Recall last 5 Memory storage.memory
Caller history Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/caller-memory-remember-the-last-request.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Caller memory — remember the last request"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Caller memory — remember the last request",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Incoming request",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "caller": "ada@example.test",
          "request": "reset my API key"
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "remember",
      "type": "storage.memory",
      "label": "Remember",
      "category": "utility",
      "config": {
        "op": "append",
        "key": "caller-history",
        "value": {
          "caller": "ada@example.test",
          "request": "reset my API key"
        }
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "recall",
      "type": "storage.memory",
      "label": "Recall last 5",
      "category": "utility",
      "config": {
        "op": "recall",
        "key": "caller-history",
        "limit": 5
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Caller history",
      "category": "utility",
      "config": {
        "message": "history: {{ $json }}"
      },
      "position": {
        "x": 1590,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "remember",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "remember",
      "sourcePort": "output",
      "targetNodeId": "recall",
      "targetPort": "input"
    },
    {
      "id": "e2",
      "sourceNodeId": "recall",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Cross-run memory scoped to this workflow: append what the caller asked for, then recall the recent history — run it several times and the history grows."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: caller-memory-remember-the-last-request.json.