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

# org_audit

> Run your own organization's custom GTM audit.

Runs the authenticated organization's custom audit, generated from its sales profile. Like
[`gtm_audit`](/tools/gtm-audit), it's **asynchronous**: the call returns a run id, and you poll
[`get_run_status`](/tools/get-run-status) with `kind: "audit"` for the result.

This tool takes **no arguments** — it audits the org tied to your API key.

**Type:** asynchronous · **Returns:** a run id and polling instructions

## Example call

```json theme={null}
{
  "name": "org_audit",
  "arguments": {}
}
```

## Returns

```markdown theme={null}
Org audit started. Poll `GET /api/v1/runs/audit/<id>`.
```

## Poll for the result

Call [`get_run_status`](/tools/get-run-status) with `kind: "audit"` and the returned id:

```json theme={null}
{
  "name": "get_run_status",
  "arguments": { "kind": "audit", "id": "<id>" }
}
```

While running you get a status line (and an error message if it failed); once `completed` you
get the full audit markdown.

## Notes

* Requires a completed sales profile for your org. If onboarding isn't finished, the call
  returns an `Onboarding required` message instead of starting a run.
* The run is scoped to your org — only your keys can poll its id.
