> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zapier.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure stored actions in the AI Actions UI

<Note>
  *Planned improvements to stored actions*

  <br />

  While stored actions can only currently be configured on the AI Actions
  domain, work is planned to provide APIs and components that allow you to embed
  action configuration in your own UI.
</Note>

Actions can be configured by you at a specific URL or with our quick configuration popup.

The setup URL is the same for everyone: `https://actions.zapier.com/<PROVIDER>/start/`

You'd typically include a button or link somewhere to open the setup window. Here's an example of how you might do that:

```javascript theme={null}
var actions = window.open(
  "https://actions.zapier.com/<PROVIDER>/start",
  "actions",
  "width=650,height=700",
);
```
