> For the complete documentation index, see [llms.txt](https://docs.appfarm.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appfarm.io/library/action-nodes/end-execution.md).

# End execution

The End Execution action node is used to end the execution of an action. When an End Execution is triggered at runtime, other action nodes placed after that End Execution will not run. If the action containing the End Execution action node is run from another action via [Run action](/library/action-nodes/run-action.md) it will continue to execute the action it was called from.

### Example

In this example, End Execution is used to create an if-else structure.

1. If the Order is new, it is updated, persisted and then the action ends.
2. If the Order is in preparation, it is updated, read to another data source and then the action ends.
3. If the Order is delivered, it is read to another data source and then a dialog is opened.

Using this structure, the status of the Order can be updated inside the action without impacting the evaluation of the conditions.

<figure><img src="/files/wYSDCmJCLWLnTxSN3f4f" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.appfarm.io/library/action-nodes/end-execution.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
