> For the complete documentation index, see [llms.txt](https://doc.aissist.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.aissist.io/integrations/action-debugger.md).

# Action Debugger

*Last updated: May 15, 2026*

Use the Action Debugger to test whether actions trigger correctly and return the right data.

It helps you inspect the full action flow before you use it in live conversations.

Use **Action Debugger** to test action trigger logic and API output.

Use [Simulator](/tutorial/simulator.md) to test the full conversation flow around those actions.

### Open the Action Debugger

1. Go to **Workspace → Integrations**.
2. Click **Debug**.

### What to test

Enter a message that should trigger an action.

Use realistic examples from your workflow, such as:

* checking order status
* finding a customer record
* looking up shipment details
* canceling an order

### What to inspect

The Action Debugger shows:

* which action triggered
* the API endpoint that was called
* the parameters sent
* the response returned by the API

In the example below, Aissist first calls `getCustomerOrders`, then calls `getTrackingDetails`.

<figure><img src="/files/WkjutcifXNBcDHCzdv9w" alt=""><figcaption><p>Example Action Debugger view</p></figcaption></figure>

### Fix common issues

If the action does not trigger:

* review the action trigger scenario
* make sure the action name and description match the intended use case
* make sure the action is linked to the right sub agent, if applicable
* make sure the test input matches the expected trigger pattern

If the parameters are wrong:

* improve the parameter names
* improve the parameter descriptions
* add clearer guidance about expected values
* include exact formats, examples, or allowed values when needed

If the response is hard to use:

* update the action instructions
* define summarization in **Response Processing** to summarize the response
* refine any **Response Processing** instructions
* return only the fields Aissist needs when possible

### When to use it

Use the Action Debugger whenever you:

* create a new action
* update an existing action
* change an integration
* troubleshoot unexpected action behavior

### Best practice

Test each action with multiple realistic inputs.

Verify both the trigger and the returned data before you move into live workflows.

Once the action works here, test the full workflow in [Simulator](/tutorial/simulator.md).


---

# 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://doc.aissist.io/integrations/action-debugger.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.
