# /portal

Retrieve a list of all portals associated with your account.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Formstack API v2025.0",
    "version": "0.0.4"
  },
  "servers": [
    {
      "url": "https://www.formstack.com/api/v2025",
      "description": "Production server"
    },
    {
      "url": "https://staging-formstack.com/api/v2025",
      "description": "Staging server"
    },
    {
      "url": "https://dev-formstack.com/api/v2025",
      "description": "Development server"
    }
  ],
  "paths": {
    "/portal": {
      "get": {
        "tags": [
          "Portals",
          "Classic"
        ],
        "description": "Retrieve a list of all portals associated with your account.",
        "operationId": "listPortals",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PortalsListingApiDto"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "PortalPreviewApiDto": {
        "title": "Portal Preview",
        "description": "Portal preview information for listing",
        "properties": {
          "id": {
            "description": "Unique identifier of the portal",
            "type": "integer",
            "nullable": false
          },
          "name": {
            "description": "Name of the portal",
            "type": "string",
            "nullable": false
          },
          "description": {
            "description": "Description of the portal",
            "type": "string",
            "nullable": true
          },
          "avatar": {
            "description": "Avatar image URL for the portal",
            "type": "string",
            "nullable": true
          },
          "created": {
            "description": "Creation timestamp of the portal",
            "type": "string",
            "nullable": true
          },
          "timezone": {
            "description": "Timezone of the portal",
            "type": "string",
            "nullable": true
          }
        },
        "type": "object"
      },
      "PortalsListingApiDto": {
        "title": "Portals Listing",
        "description": "Portals listing response",
        "properties": {
          "portals": {
            "description": "List of portal previews",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PortalPreviewApiDto"
            },
            "nullable": true
          }
        },
        "type": "object"
      }
    }
  },
  "tags": [
    {
      "name": "Portals",
      "description": "Portals provide a branded hub where users access a curated collection of forms. Use these endpoints to manage a portal and its forms and users—copying (to create new portals), editing, and deleting portals, adding, editing, and removing portal forms, managing portal users, and setting or removing the portal avatar."
    },
    {
      "name": "Classic",
      "description": "Classic"
    }
  ]
}
```