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

# forms

> List the web forms through which customers raise tickets.

Forms are the web forms your workspace publishes for customers to raise tickets through. For
fields and response details, see the [API reference](/api-reference/forms/list).

<Note>
  Sample output on this page is shown as the `--json` envelope, which is reproducible. Pretty
  tables depend on your terminal width. See [Output formats](/cli/output-formats).
</Note>

## forms list

Lists the workspace's enabled forms with the slug each one is published under. Disabled forms
are left out.

```bash theme={"system"}
neetodesk forms list
```

This command takes no flags beyond the [global ones](/cli-reference/overview#global-flags).

```json theme={"system"}
{
  "data": {
    "forms": [
      {
        "id": "9c8b7a65-4d3e-42f1-a0b9-8c7d6e5f4a3b",
        "title": "Contact support",
        "slug": "contact-support"
      }
    ]
  }
}
```
