# runOnCompleteHook

`runOnCompleteHook` triggers the form-completion hook flow and does not continue the action queue until that hook finishes.

## Action Object

| Key       | Type     | Description                                       |
| --------- | -------- | ------------------------------------------------- |
| `action`  | `string` | Must be `"runOnCompleteHook"`                     |
| `options` | `object` | Optional payload passed through the action object |

## Example

```json
{
  "action": "runOnCompleteHook"
}
```

## Behavior Notes

* BetterForms emits `runOnCompleteHook` on the client event bus.
* The action waits for the callback before moving to the next queued action.
* If the hook errors, BetterForms still continues the queue after the error is handled.
* Use this when a client-side workflow needs to wait for completion logic before continuing.

## Related Pages

* [Scoped Hooks](/reference/hooksoverview/hooks.md)
* [runUtilityHook](/reference/actions-processor/actions_overview/runutilityhook.md)


---

# Agent Instructions: 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:

```
GET https://docs.klai.studio/reference/actions-processor/actions_overview/runoncompletehook.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
