> For the complete documentation index, see [llms.txt](https://workflow.govstack.global/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://workflow.govstack.global/9-workflows.md).

# 9 Internal Workflows

There are no required internal workflows for candidate applications that implement the Workflow Building Block specification. Below is an example of how an internal workflow might run when responding to an API request.

## 9.1 Start a workflow process via API

To satisfy the initial 6.2 functional requirements a candidate application may implement the following internal workflow.

{% @mermaid/diagram content="sequenceDiagram
autonumber
participant E as External Application
participant W as Workflow Application
participant Q as Workflow Engine Queue
participant X as Workflow Engine Executor
E->>W: Call to start WF process with input data
W->>W: Create initial state for process instance with request body
W->>Q: Add process instance to queue
W->>E: Respond with 202 and process instance ID
X->>Q: Get process instance request from top of queue
X->>X: Execute workflow process instance
X->>W: Send results back to app" %}


---

# 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://workflow.govstack.global/9-workflows.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.
