From 0271cdabf1628dca12ee6b19eed4e91cc9f20d09 Mon Sep 17 00:00:00 2001 From: Patrick de Mooij Date: Wed, 15 Apr 2020 19:24:27 +0200 Subject: [PATCH] API Reference doc updated (#1250) I removed the description for pageTags (under IPageViewTelemetry) in API-reference.md because it doesn't exist in the code or released product anymore. --- API-reference.md | 1 - 1 file changed, 1 deletion(-) diff --git a/API-reference.md b/API-reference.md index 40a150b93..197366c88 100644 --- a/API-reference.md +++ b/API-reference.md @@ -13,7 +13,6 @@ Parameter | Type | Description `refUri?` | string | **Optional**
The URL of the previous page that sent the user to the current page. `pageType?` | string | **Optional**
Page Type string. Describes how you classify this page, e.g. errorPage, formPage, etc. `isLoggedIn?` | boolean | **Optional**
Whether or not the user is logged in -`pageTags?` | dictionary | **Optional**
Property bag to contain an extension to domain properties - extension to Part B `properties?` | dictionary | **Optional**
Map of string to any: Additional data used to [filter pages](https://azure.microsoft.com/documentation/articles/app-insights-api-custom-events-metrics/#properties) in the portal. Defaults to empty. > *Note:* To send a custom duration (ms) of your pageview as an argument, it must be included in the `properties` named field. E.g `appInsights.trackPageView({ properties: { duration: 123.45 } });`.