> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetgail.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetgail.com/_mcp/server.

# End

> Marks where a workflow run finishes.

The End node marks the finish line of a workflow. When a run reaches an End
node, that path of the workflow is complete. It does no work and has nothing to
configure, it simply signals that there is nothing left to do.

## When to use it

* Every path through a workflow needs somewhere to stop, and that is what End
  provides.
* You want a clear success finish separate from an error finish. A workflow can
  have more than one End node, so you can route a failed step to its own ending.

## Inputs

The End node has nothing to configure.

## Outputs

The End node produces nothing.

## Example

An agency workflow looks up a caller's details before logging the outcome. The
main path ends at an End node named "Success." If the lookup step fails, its
failure route leads to a second End node named "Error." Anyone reading the run
history can tell at a glance which ending a given run reached.

![The End node selected on the canvas, with a settings panel noting it has no configurable options.](https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/gail.docs.buildwithfern.com/ed0e498d410cdef0023ec1dd6638e9f9d1eb38f3005a6065c1d8a3406ab2489e/docs/pages/platform/workflows/assets/logic-and-flow-end.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260823%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260823T232905Z&X-Amz-Expires=604800&X-Amz-Signature=5bb9cf04a34f776a64b2ba9b0d168ff9cf7b74c2b509168fce49c8ccb6a02d29&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject)

Give each End node a clear name like "Approved" or "Declined" when a workflow
has several endings. The name shows up in the run history and makes it obvious
how a run turned out.

## Related nodes

#### [Start](/platform/workflows/node-reference/logic-and-flow/start)

The entry point where every workflow begins.

#### [Conditional](/platform/workflows/node-reference/logic-and-flow/conditional)

Send a run toward different endings based on conditions.