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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Introspect Events API

> Retrieves the connected Events Reporting integration and enabled feeds.

`onePassword.introspectEventsApi` retrieves the connected Events Reporting integration and enabled feeds.

This action requires an Events API token connection.

## Example

```ts automations/onepassword-introspect-events-api.automation.ts theme={null}
import { automation, onSchedule } from "automate.ax"
import { onePassword } from "automate.ax/onepassword"

export default automation("Introspect Events API", () => {
  onSchedule({ schedule: "0 * * * *" })

  onePassword.introspectEventsApi()
})
```

## Inputs

This action has no input. Select an Events API connection with the optional account argument. Every input accepts a compatible signal. Account-backed actions accept an optional second argument `{ account }` to select a named binding.

## Output

Returns the integration UUID, account UUID, issue date, and enabled event features.
