Google Super

GOOGLESUPER_LIST_PROPERTIES

Tool to list GA4 properties under a specific account. Use after obtaining an account ID; supports pagination and including soft-deleted properties.

Remote googlesuper

Other tools also called GOOGLESUPER_LIST_PROPERTIES? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "account": {
      "type": "string",
      "title": "Account",
      "pattern": "^accounts/[^/]+$",
      "examples": [
        "accounts/123456789"
      ],
      "description": "Required. The account resource name. Format: accounts/{account_id}"
    },
    "pageSize": {
      "type": "integer",
      "title": "Page Size",
      "default": null,
      "maximum": 200,
      "minimum": 1,
      "examples": [
        100
      ],
      "nullable": true,
      "description": "Optional. Maximum number of properties to return; must be between 1 and 200."
    },
    "pageToken": {
      "type": "string",
      "title": "Page Token",
      "default": null,
      "examples": [
        "token123"
      ],
      "nullable": true,
      "description": "Optional. Token returned from a previous call to retrieve the next page of results."
    },
    "showDeleted": {
      "type": "boolean",
      "title": "Show Deleted",
      "default": null,
      "nullable": true,
      "description": "Optional. Whether to include soft-deleted (trashed) properties."
    }
  }
}