File size: 122,177 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 |
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/analytics.edit": {
"description": "Edit Google Analytics management entities"
},
"https://www.googleapis.com/auth/analytics.readonly": {
"description": "See and download your Google Analytics data"
}
}
}
},
"basePath": "",
"baseUrl": "https://analyticsadmin.googleapis.com/",
"batchPath": "batch",
"canonicalName": "Google Analytics Admin",
"description": "Manage properties in Google Analytics. Warning: Creating multiple Customer Applications, Accounts, or Projects to simulate or act as a single Customer Application, Account, or Project (respectively) or to circumvent Service-specific usage limits or quotas is a direct violation of Google Cloud Platform Terms of Service as well as Google APIs Terms of Service. These actions can result in immediate termination of your GCP project(s) without any warning.",
"discoveryVersion": "v1",
"documentationLink": "http://code.google.com/apis/analytics/docs/mgmt/home.html",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"id": "analyticsadmin:v1beta",
"kind": "discovery#restDescription",
"mtlsRootUrl": "https://analyticsadmin.mtls.googleapis.com/",
"name": "analyticsadmin",
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
"$.xgafv": {
"description": "V1 error format.",
"enum": [
"1",
"2"
],
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"type": "string"
},
"access_token": {
"description": "OAuth access token.",
"location": "query",
"type": "string"
},
"alt": {
"default": "json",
"description": "Data format for response.",
"enum": [
"json",
"media",
"proto"
],
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location": "query",
"type": "string"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"location": "query",
"type": "string"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
"location": "query",
"type": "boolean"
},
"quotaUser": {
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
"location": "query",
"type": "string"
},
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query",
"type": "string"
},
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query",
"type": "string"
}
},
"protocol": "rest",
"resources": {
"accountSummaries": {
"methods": {
"list": {
"description": "Returns summaries of all accounts accessible by the caller.",
"flatPath": "v1beta/accountSummaries",
"httpMethod": "GET",
"id": "analyticsadmin.accountSummaries.list",
"parameterOrder": [],
"parameters": {
"pageSize": {
"description": "The maximum number of AccountSummary resources to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListAccountSummaries` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAccountSummaries` must match the call that provided the page token.",
"location": "query",
"type": "string"
}
},
"path": "v1beta/accountSummaries",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListAccountSummariesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
}
}
},
"accounts": {
"methods": {
"delete": {
"description": "Marks target Account as soft-deleted (ie: \"trashed\") and returns it. This API does not have a method to restore soft-deleted accounts. However, they can be restored using the Trash Can UI. If the accounts are not restored before the expiration time, the account and all child resources (eg: Properties, GoogleAdsLinks, Streams, AccessBindings) will be permanently purged. https://support.google.com/analytics/answer/6154772 Returns an error if the target is not found.",
"flatPath": "v1beta/accounts/{accountsId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.accounts.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the Account to soft-delete. Format: accounts/{account} Example: \"accounts/100\"",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single Account.",
"flatPath": "v1beta/accounts/{accountsId}",
"httpMethod": "GET",
"id": "analyticsadmin.accounts.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the account to lookup. Format: accounts/{account} Example: \"accounts/100\"",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaAccount"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"getDataSharingSettings": {
"description": "Get data sharing settings on an account. Data sharing settings are singletons.",
"flatPath": "v1beta/accounts/{accountsId}/dataSharingSettings",
"httpMethod": "GET",
"id": "analyticsadmin.accounts.getDataSharingSettings",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the settings to lookup. Format: accounts/{account}/dataSharingSettings Example: `accounts/1000/dataSharingSettings`",
"location": "path",
"pattern": "^accounts/[^/]+/dataSharingSettings$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataSharingSettings"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Returns all accounts accessible by the caller. Note that these accounts might not currently have GA4 properties. Soft-deleted (ie: \"trashed\") accounts are excluded by default. Returns an empty list if no relevant accounts are found.",
"flatPath": "v1beta/accounts",
"httpMethod": "GET",
"id": "analyticsadmin.accounts.list",
"parameterOrder": [],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListAccounts` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAccounts` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"showDeleted": {
"description": "Whether to include soft-deleted (ie: \"trashed\") Accounts in the results. Accounts can be inspected to determine whether they are deleted or not.",
"location": "query",
"type": "boolean"
}
},
"path": "v1beta/accounts",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListAccountsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates an account.",
"flatPath": "v1beta/accounts/{accountsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.accounts.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this account. Format: accounts/{account} Example: \"accounts/100\"",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (for example, \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaAccount"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaAccount"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"provisionAccountTicket": {
"description": "Requests a ticket for creating an account.",
"flatPath": "v1beta/accounts:provisionAccountTicket",
"httpMethod": "POST",
"id": "analyticsadmin.accounts.provisionAccountTicket",
"parameterOrder": [],
"parameters": {},
"path": "v1beta/accounts:provisionAccountTicket",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaProvisionAccountTicketRequest"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaProvisionAccountTicketResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"runAccessReport": {
"description": "Returns a customized report of data access records. The report provides records of each time a user reads Google Analytics reporting data. Access records are retained for up to 2 years. Data Access Reports can be requested for a property. Reports may be requested for any property, but dimensions that aren't related to quota can only be requested on Google Analytics 360 properties. This method is only available to Administrators. These data access records include GA4 UI Reporting, GA4 UI Explorations, GA4 Data API, and other products like Firebase & Admob that can retrieve data from Google Analytics through a linkage. These records don't include property configuration changes like adding a stream or changing a property's time zone. For configuration change history, see [searchChangeHistoryEvents](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1alpha/accounts/searchChangeHistoryEvents).",
"flatPath": "v1beta/accounts/{accountsId}:runAccessReport",
"httpMethod": "POST",
"id": "analyticsadmin.accounts.runAccessReport",
"parameterOrder": [
"entity"
],
"parameters": {
"entity": {
"description": "The Data Access Report supports requesting at the property level or account level. If requested at the account level, Data Access Reports include all access for all properties under that account. To request at the property level, entity should be for example 'properties/123' if \"123\" is your GA4 property ID. To request at the account level, entity should be for example 'accounts/1234' if \"1234\" is your GA4 Account ID.",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+entity}:runAccessReport",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaRunAccessReportRequest"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaRunAccessReportResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"searchChangeHistoryEvents": {
"description": "Searches through all changes to an account or its children given the specified set of filters.",
"flatPath": "v1beta/accounts/{accountsId}:searchChangeHistoryEvents",
"httpMethod": "POST",
"id": "analyticsadmin.accounts.searchChangeHistoryEvents",
"parameterOrder": [
"account"
],
"parameters": {
"account": {
"description": "Required. The account resource for which to return change history resources. Format: accounts/{account} Example: `accounts/100`",
"location": "path",
"pattern": "^accounts/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+account}:searchChangeHistoryEvents",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
"properties": {
"methods": {
"acknowledgeUserDataCollection": {
"description": "Acknowledges the terms of user data collection for the specified property. This acknowledgement must be completed (either in the Google Analytics UI or through this API) before MeasurementProtocolSecret resources may be created.",
"flatPath": "v1beta/properties/{propertiesId}:acknowledgeUserDataCollection",
"httpMethod": "POST",
"id": "analyticsadmin.properties.acknowledgeUserDataCollection",
"parameterOrder": [
"property"
],
"parameters": {
"property": {
"description": "Required. The property for which to acknowledge user data collection.",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+property}:acknowledgeUserDataCollection",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"create": {
"description": "Creates an \"GA4\" property with the specified location and attributes.",
"flatPath": "v1beta/properties",
"httpMethod": "POST",
"id": "analyticsadmin.properties.create",
"parameterOrder": [],
"parameters": {},
"path": "v1beta/properties",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Marks target Property as soft-deleted (ie: \"trashed\") and returns it. This API does not have a method to restore soft-deleted properties. However, they can be restored using the Trash Can UI. If the properties are not restored before the expiration time, the Property and all child resources (eg: GoogleAdsLinks, Streams, AccessBindings) will be permanently purged. https://support.google.com/analytics/answer/6154772 Returns an error if the target is not found, or is not a GA4 Property.",
"flatPath": "v1beta/properties/{propertiesId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the Property to soft-delete. Format: properties/{property_id} Example: \"properties/1000\"",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single \"GA4\" Property.",
"flatPath": "v1beta/properties/{propertiesId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the property to lookup. Format: properties/{property_id} Example: \"properties/1000\"",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"getDataRetentionSettings": {
"description": "Returns the singleton data retention settings for this property.",
"flatPath": "v1beta/properties/{propertiesId}/dataRetentionSettings",
"httpMethod": "GET",
"id": "analyticsadmin.properties.getDataRetentionSettings",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the settings to lookup. Format: properties/{property}/dataRetentionSettings Example: \"properties/1000/dataRetentionSettings\"",
"location": "path",
"pattern": "^properties/[^/]+/dataRetentionSettings$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataRetentionSettings"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Returns child Properties under the specified parent Account. Only \"GA4\" properties will be returned. Properties will be excluded if the caller does not have access. Soft-deleted (ie: \"trashed\") properties are excluded by default. Returns an empty list if no relevant properties are found.",
"flatPath": "v1beta/properties",
"httpMethod": "GET",
"id": "analyticsadmin.properties.list",
"parameterOrder": [],
"parameters": {
"filter": {
"description": "Required. An expression for filtering the results of the request. Fields eligible for filtering are: `parent:`(The resource name of the parent account/property) or `ancestor:`(The resource name of the parent account) or `firebase_project:`(The id or number of the linked firebase project). Some examples of filters: ``` | Filter | Description | |-----------------------------|-------------------------------------------| | parent:accounts/123 | The account with account id: 123. | | parent:properties/123 | The property with property id: 123. | | ancestor:accounts/123 | The account with account id: 123. | | firebase_project:project-id | The firebase project with id: project-id. | | firebase_project:123 | The firebase project with number: 123. | ```",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "The maximum number of resources to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListProperties` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListProperties` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"showDeleted": {
"description": "Whether to include soft-deleted (ie: \"trashed\") Properties in the results. Properties can be inspected to determine whether they are deleted or not.",
"location": "query",
"type": "boolean"
}
},
"path": "v1beta/properties",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListPropertiesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a property.",
"flatPath": "v1beta/properties/{propertiesId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this property. Format: properties/{property_id} Example: \"properties/1000\"",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (e.g., \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"runAccessReport": {
"description": "Returns a customized report of data access records. The report provides records of each time a user reads Google Analytics reporting data. Access records are retained for up to 2 years. Data Access Reports can be requested for a property. Reports may be requested for any property, but dimensions that aren't related to quota can only be requested on Google Analytics 360 properties. This method is only available to Administrators. These data access records include GA4 UI Reporting, GA4 UI Explorations, GA4 Data API, and other products like Firebase & Admob that can retrieve data from Google Analytics through a linkage. These records don't include property configuration changes like adding a stream or changing a property's time zone. For configuration change history, see [searchChangeHistoryEvents](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1alpha/accounts/searchChangeHistoryEvents).",
"flatPath": "v1beta/properties/{propertiesId}:runAccessReport",
"httpMethod": "POST",
"id": "analyticsadmin.properties.runAccessReport",
"parameterOrder": [
"entity"
],
"parameters": {
"entity": {
"description": "The Data Access Report supports requesting at the property level or account level. If requested at the account level, Data Access Reports include all access for all properties under that account. To request at the property level, entity should be for example 'properties/123' if \"123\" is your GA4 property ID. To request at the account level, entity should be for example 'accounts/1234' if \"1234\" is your GA4 Account ID.",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+entity}:runAccessReport",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaRunAccessReportRequest"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaRunAccessReportResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"updateDataRetentionSettings": {
"description": "Updates the singleton data retention settings for this property.",
"flatPath": "v1beta/properties/{propertiesId}/dataRetentionSettings",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.updateDataRetentionSettings",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name for this DataRetentionSetting resource. Format: properties/{property}/dataRetentionSettings",
"location": "path",
"pattern": "^properties/[^/]+/dataRetentionSettings$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (e.g., \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaDataRetentionSettings"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataRetentionSettings"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
},
"resources": {
"conversionEvents": {
"deprecated": true,
"methods": {
"create": {
"deprecated": true,
"description": "Deprecated: Use `CreateKeyEvent` instead. Creates a conversion event with the specified attributes.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents",
"httpMethod": "POST",
"id": "analyticsadmin.properties.conversionEvents.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The resource name of the parent property where this conversion event will be created. Format: properties/123",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/conversionEvents",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"deprecated": true,
"description": "Deprecated: Use `DeleteKeyEvent` instead. Deletes a conversion event in a property.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents/{conversionEventsId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.conversionEvents.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the conversion event to delete. Format: properties/{property}/conversionEvents/{conversion_event} Example: \"properties/123/conversionEvents/456\"",
"location": "path",
"pattern": "^properties/[^/]+/conversionEvents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"deprecated": true,
"description": "Deprecated: Use `GetKeyEvent` instead. Retrieve a single conversion event.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents/{conversionEventsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.conversionEvents.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the conversion event to retrieve. Format: properties/{property}/conversionEvents/{conversion_event} Example: \"properties/123/conversionEvents/456\"",
"location": "path",
"pattern": "^properties/[^/]+/conversionEvents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"deprecated": true,
"description": "Deprecated: Use `ListKeyEvents` instead. Returns a list of conversion events in the specified parent property. Returns an empty list if no conversion events are found.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents",
"httpMethod": "GET",
"id": "analyticsadmin.properties.conversionEvents.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListConversionEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListConversionEvents` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the parent property. Example: 'properties/123'",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/conversionEvents",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListConversionEventsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"deprecated": true,
"description": "Deprecated: Use `UpdateKeyEvent` instead. Updates a conversion event with the specified attributes.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents/{conversionEventsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.conversionEvents.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this conversion event. Format: properties/{property}/conversionEvents/{conversion_event}",
"location": "path",
"pattern": "^properties/[^/]+/conversionEvents/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (e.g., \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
"customDimensions": {
"methods": {
"archive": {
"description": "Archives a CustomDimension on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customDimensions/{customDimensionsId}:archive",
"httpMethod": "POST",
"id": "analyticsadmin.properties.customDimensions.archive",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the CustomDimension to archive. Example format: properties/1234/customDimensions/5678",
"location": "path",
"pattern": "^properties/[^/]+/customDimensions/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}:archive",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest"
},
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"create": {
"description": "Creates a CustomDimension.",
"flatPath": "v1beta/properties/{propertiesId}/customDimensions",
"httpMethod": "POST",
"id": "analyticsadmin.properties.customDimensions.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/customDimensions",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single CustomDimension.",
"flatPath": "v1beta/properties/{propertiesId}/customDimensions/{customDimensionsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.customDimensions.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the CustomDimension to get. Example format: properties/1234/customDimensions/5678",
"location": "path",
"pattern": "^properties/[^/]+/customDimensions/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Lists CustomDimensions on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customDimensions",
"httpMethod": "GET",
"id": "analyticsadmin.properties.customDimensions.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum).",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListCustomDimensions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCustomDimensions` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/customDimensions",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListCustomDimensionsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a CustomDimension on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customDimensions/{customDimensionsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.customDimensions.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name for this CustomDimension resource. Format: properties/{property}/customDimensions/{customDimension}",
"location": "path",
"pattern": "^properties/[^/]+/customDimensions/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
"customMetrics": {
"methods": {
"archive": {
"description": "Archives a CustomMetric on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customMetrics/{customMetricsId}:archive",
"httpMethod": "POST",
"id": "analyticsadmin.properties.customMetrics.archive",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the CustomMetric to archive. Example format: properties/1234/customMetrics/5678",
"location": "path",
"pattern": "^properties/[^/]+/customMetrics/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}:archive",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest"
},
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"create": {
"description": "Creates a CustomMetric.",
"flatPath": "v1beta/properties/{propertiesId}/customMetrics",
"httpMethod": "POST",
"id": "analyticsadmin.properties.customMetrics.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/customMetrics",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single CustomMetric.",
"flatPath": "v1beta/properties/{propertiesId}/customMetrics/{customMetricsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.customMetrics.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the CustomMetric to get. Example format: properties/1234/customMetrics/5678",
"location": "path",
"pattern": "^properties/[^/]+/customMetrics/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Lists CustomMetrics on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customMetrics",
"httpMethod": "GET",
"id": "analyticsadmin.properties.customMetrics.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum).",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListCustomMetrics` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCustomMetrics` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/customMetrics",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListCustomMetricsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a CustomMetric on a property.",
"flatPath": "v1beta/properties/{propertiesId}/customMetrics/{customMetricsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.customMetrics.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name for this CustomMetric resource. Format: properties/{property}/customMetrics/{customMetric}",
"location": "path",
"pattern": "^properties/[^/]+/customMetrics/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
"dataStreams": {
"methods": {
"create": {
"description": "Creates a DataStream.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams",
"httpMethod": "POST",
"id": "analyticsadmin.properties.dataStreams.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/dataStreams",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Deletes a DataStream on a property.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.dataStreams.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the DataStream to delete. Example format: properties/1234/dataStreams/5678",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single DataStream.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.dataStreams.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the DataStream to get. Example format: properties/1234/dataStreams/5678",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Lists DataStreams on a property.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams",
"httpMethod": "GET",
"id": "analyticsadmin.properties.dataStreams.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum).",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListDataStreams` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDataStreams` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/dataStreams",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListDataStreamsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a DataStream on a property.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.dataStreams.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this Data Stream. Format: properties/{property_id}/dataStreams/{stream_id} Example: \"properties/1000/dataStreams/2000\"",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
},
"resources": {
"measurementProtocolSecrets": {
"methods": {
"create": {
"description": "Creates a measurement protocol secret.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/measurementProtocolSecrets",
"httpMethod": "POST",
"id": "analyticsadmin.properties.dataStreams.measurementProtocolSecrets.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The parent resource where this secret will be created. Format: properties/{property}/dataStreams/{dataStream}",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/measurementProtocolSecrets",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Deletes target MeasurementProtocolSecret.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/measurementProtocolSecrets/{measurementProtocolSecretsId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.dataStreams.measurementProtocolSecrets.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the MeasurementProtocolSecret to delete. Format: properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+/measurementProtocolSecrets/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Lookup for a single \"GA4\" MeasurementProtocolSecret.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/measurementProtocolSecrets/{measurementProtocolSecretsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.dataStreams.measurementProtocolSecrets.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the measurement protocol secret to lookup. Format: properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+/measurementProtocolSecrets/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Returns child MeasurementProtocolSecrets under the specified parent Property.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/measurementProtocolSecrets",
"httpMethod": "GET",
"id": "analyticsadmin.properties.dataStreams.measurementProtocolSecrets.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 10 resources will be returned. The maximum value is 10. Higher values will be coerced to the maximum.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListMeasurementProtocolSecrets` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMeasurementProtocolSecrets` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the parent stream. Format: properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/measurementProtocolSecrets",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListMeasurementProtocolSecretsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a measurement protocol secret.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/measurementProtocolSecrets/{measurementProtocolSecretsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.dataStreams.measurementProtocolSecrets.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+/measurementProtocolSecrets/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Omitted fields will not be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
}
}
},
"firebaseLinks": {
"methods": {
"create": {
"description": "Creates a FirebaseLink. Properties can have at most one FirebaseLink.",
"flatPath": "v1beta/properties/{propertiesId}/firebaseLinks",
"httpMethod": "POST",
"id": "analyticsadmin.properties.firebaseLinks.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Format: properties/{property_id} Example: `properties/1234`",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/firebaseLinks",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaFirebaseLink"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaFirebaseLink"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Deletes a FirebaseLink on a property",
"flatPath": "v1beta/properties/{propertiesId}/firebaseLinks/{firebaseLinksId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.firebaseLinks.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Format: properties/{property_id}/firebaseLinks/{firebase_link_id} Example: `properties/1234/firebaseLinks/5678`",
"location": "path",
"pattern": "^properties/[^/]+/firebaseLinks/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"list": {
"description": "Lists FirebaseLinks on a property. Properties can have at most one FirebaseLink.",
"flatPath": "v1beta/properties/{propertiesId}/firebaseLinks",
"httpMethod": "GET",
"id": "analyticsadmin.properties.firebaseLinks.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListFirebaseLinks` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListFirebaseLinks` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Format: properties/{property_id} Example: `properties/1234`",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/firebaseLinks",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListFirebaseLinksResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
}
}
},
"googleAdsLinks": {
"methods": {
"create": {
"description": "Creates a GoogleAdsLink.",
"flatPath": "v1beta/properties/{propertiesId}/googleAdsLinks",
"httpMethod": "POST",
"id": "analyticsadmin.properties.googleAdsLinks.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/googleAdsLinks",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Deletes a GoogleAdsLink on a property",
"flatPath": "v1beta/properties/{propertiesId}/googleAdsLinks/{googleAdsLinksId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.googleAdsLinks.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Example format: properties/1234/googleAdsLinks/5678",
"location": "path",
"pattern": "^properties/[^/]+/googleAdsLinks/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"list": {
"description": "Lists GoogleAdsLinks on a property.",
"flatPath": "v1beta/properties/{propertiesId}/googleAdsLinks",
"httpMethod": "GET",
"id": "analyticsadmin.properties.googleAdsLinks.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum).",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListGoogleAdsLinks` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListGoogleAdsLinks` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Example format: properties/1234",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/googleAdsLinks",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListGoogleAdsLinksResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a GoogleAdsLink on a property",
"flatPath": "v1beta/properties/{propertiesId}/googleAdsLinks/{googleAdsLinksId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.googleAdsLinks.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Format: properties/{propertyId}/googleAdsLinks/{googleAdsLinkId} Note: googleAdsLinkId is not the Google Ads customer ID.",
"location": "path",
"pattern": "^properties/[^/]+/googleAdsLinks/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (e.g., \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
"keyEvents": {
"methods": {
"create": {
"description": "Creates a Key Event.",
"flatPath": "v1beta/properties/{propertiesId}/keyEvents",
"httpMethod": "POST",
"id": "analyticsadmin.properties.keyEvents.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The resource name of the parent property where this Key Event will be created. Format: properties/123",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/keyEvents",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"delete": {
"description": "Deletes a Key Event.",
"flatPath": "v1beta/properties/{propertiesId}/keyEvents/{keyEventsId}",
"httpMethod": "DELETE",
"id": "analyticsadmin.properties.keyEvents.delete",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the Key Event to delete. Format: properties/{property}/keyEvents/{key_event} Example: \"properties/123/keyEvents/456\"",
"location": "path",
"pattern": "^properties/[^/]+/keyEvents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleProtobufEmpty"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
},
"get": {
"description": "Retrieve a single Key Event.",
"flatPath": "v1beta/properties/{propertiesId}/keyEvents/{keyEventsId}",
"httpMethod": "GET",
"id": "analyticsadmin.properties.keyEvents.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The resource name of the Key Event to retrieve. Format: properties/{property}/keyEvents/{key_event} Example: \"properties/123/keyEvents/456\"",
"location": "path",
"pattern": "^properties/[^/]+/keyEvents/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+name}",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"list": {
"description": "Returns a list of Key Events in the specified parent property. Returns an empty list if no Key Events are found.",
"flatPath": "v1beta/properties/{propertiesId}/keyEvents",
"httpMethod": "GET",
"id": "analyticsadmin.properties.keyEvents.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token, received from a previous `ListKeyEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListKeyEvents` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name of the parent property. Example: 'properties/123'",
"location": "path",
"pattern": "^properties/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/keyEvents",
"response": {
"$ref": "GoogleAnalyticsAdminV1betaListKeyEventsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a Key Event.",
"flatPath": "v1beta/properties/{propertiesId}/keyEvents/{keyEventsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.keyEvents.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this key event. Format: properties/{property}/keyEvents/{key_event}",
"location": "path",
"pattern": "^properties/[^/]+/keyEvents/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. The list of fields to be updated. Field names must be in snake case (e.g., \"field_to_update\"). Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
}
}
}
},
"revision": "20240722",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1betaAccessBetweenFilter": {
"description": "To express that the result needs to be between two numbers (inclusive).",
"id": "GoogleAnalyticsAdminV1betaAccessBetweenFilter",
"properties": {
"fromValue": {
"$ref": "GoogleAnalyticsAdminV1betaNumericValue",
"description": "Begins with this number."
},
"toValue": {
"$ref": "GoogleAnalyticsAdminV1betaNumericValue",
"description": "Ends with this number."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessDateRange": {
"description": "A contiguous range of days: startDate, startDate + 1, ..., endDate.",
"id": "GoogleAnalyticsAdminV1betaAccessDateRange",
"properties": {
"endDate": {
"description": "The inclusive end date for the query in the format `YYYY-MM-DD`. Cannot be before `startDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.",
"type": "string"
},
"startDate": {
"description": "The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot be after `endDate`. The format `NdaysAgo`, `yesterday`, or `today` is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessDimension": {
"description": "Dimensions are attributes of your data. For example, the dimension `userEmail` indicates the email of the user that accessed reporting data. Dimension values in report responses are strings.",
"id": "GoogleAnalyticsAdminV1betaAccessDimension",
"properties": {
"dimensionName": {
"description": "The API name of the dimension. See [Data Access Schema](https://developers.google.com/analytics/devguides/config/admin/v1/access-api-schema) for the list of dimensions supported in this API. Dimensions are referenced by name in `dimensionFilter` and `orderBys`.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessDimensionHeader": {
"description": "Describes a dimension column in the report. Dimensions requested in a report produce column entries within rows and DimensionHeaders. However, dimensions used exclusively within filters or expressions do not produce columns in a report; correspondingly, those dimensions do not produce headers.",
"id": "GoogleAnalyticsAdminV1betaAccessDimensionHeader",
"properties": {
"dimensionName": {
"description": "The dimension's name; for example 'userEmail'.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessDimensionValue": {
"description": "The value of a dimension.",
"id": "GoogleAnalyticsAdminV1betaAccessDimensionValue",
"properties": {
"value": {
"description": "The dimension value. For example, this value may be 'France' for the 'country' dimension.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessFilter": {
"description": "An expression to filter dimension or metric values.",
"id": "GoogleAnalyticsAdminV1betaAccessFilter",
"properties": {
"betweenFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessBetweenFilter",
"description": "A filter for two values."
},
"fieldName": {
"description": "The dimension name or metric name.",
"type": "string"
},
"inListFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessInListFilter",
"description": "A filter for in list values."
},
"numericFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessNumericFilter",
"description": "A filter for numeric or date values."
},
"stringFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessStringFilter",
"description": "Strings related filter."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessFilterExpression": {
"description": "Expresses dimension or metric filters. The fields in the same expression need to be either all dimensions or all metrics.",
"id": "GoogleAnalyticsAdminV1betaAccessFilterExpression",
"properties": {
"accessFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilter",
"description": "A primitive filter. In the same FilterExpression, all of the filter's field names need to be either all dimensions or all metrics."
},
"andGroup": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpressionList",
"description": "Each of the FilterExpressions in the and_group has an AND relationship."
},
"notExpression": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpression",
"description": "The FilterExpression is NOT of not_expression."
},
"orGroup": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpressionList",
"description": "Each of the FilterExpressions in the or_group has an OR relationship."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessFilterExpressionList": {
"description": "A list of filter expressions.",
"id": "GoogleAnalyticsAdminV1betaAccessFilterExpressionList",
"properties": {
"expressions": {
"description": "A list of filter expressions.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpression"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessInListFilter": {
"description": "The result needs to be in a list of string values.",
"id": "GoogleAnalyticsAdminV1betaAccessInListFilter",
"properties": {
"caseSensitive": {
"description": "If true, the string value is case sensitive.",
"type": "boolean"
},
"values": {
"description": "The list of string values. Must be non-empty.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessMetric": {
"description": "The quantitative measurements of a report. For example, the metric `accessCount` is the total number of data access records.",
"id": "GoogleAnalyticsAdminV1betaAccessMetric",
"properties": {
"metricName": {
"description": "The API name of the metric. See [Data Access Schema](https://developers.google.com/analytics/devguides/config/admin/v1/access-api-schema) for the list of metrics supported in this API. Metrics are referenced by name in `metricFilter` & `orderBys`.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessMetricHeader": {
"description": "Describes a metric column in the report. Visible metrics requested in a report produce column entries within rows and MetricHeaders. However, metrics used exclusively within filters or expressions do not produce columns in a report; correspondingly, those metrics do not produce headers.",
"id": "GoogleAnalyticsAdminV1betaAccessMetricHeader",
"properties": {
"metricName": {
"description": "The metric's name; for example 'accessCount'.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessMetricValue": {
"description": "The value of a metric.",
"id": "GoogleAnalyticsAdminV1betaAccessMetricValue",
"properties": {
"value": {
"description": "The measurement value. For example, this value may be '13'.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessNumericFilter": {
"description": "Filters for numeric or date values.",
"id": "GoogleAnalyticsAdminV1betaAccessNumericFilter",
"properties": {
"operation": {
"description": "The operation type for this filter.",
"enum": [
"OPERATION_UNSPECIFIED",
"EQUAL",
"LESS_THAN",
"LESS_THAN_OR_EQUAL",
"GREATER_THAN",
"GREATER_THAN_OR_EQUAL"
],
"enumDescriptions": [
"Unspecified.",
"Equal",
"Less than",
"Less than or equal",
"Greater than",
"Greater than or equal"
],
"type": "string"
},
"value": {
"$ref": "GoogleAnalyticsAdminV1betaNumericValue",
"description": "A numeric value or a date value."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessOrderBy": {
"description": "Order bys define how rows will be sorted in the response. For example, ordering rows by descending access count is one ordering, and ordering rows by the country string is a different ordering.",
"id": "GoogleAnalyticsAdminV1betaAccessOrderBy",
"properties": {
"desc": {
"description": "If true, sorts by descending order. If false or unspecified, sorts in ascending order.",
"type": "boolean"
},
"dimension": {
"$ref": "GoogleAnalyticsAdminV1betaAccessOrderByDimensionOrderBy",
"description": "Sorts results by a dimension's values."
},
"metric": {
"$ref": "GoogleAnalyticsAdminV1betaAccessOrderByMetricOrderBy",
"description": "Sorts results by a metric's values."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessOrderByDimensionOrderBy": {
"description": "Sorts by dimension values.",
"id": "GoogleAnalyticsAdminV1betaAccessOrderByDimensionOrderBy",
"properties": {
"dimensionName": {
"description": "A dimension name in the request to order by.",
"type": "string"
},
"orderType": {
"description": "Controls the rule for dimension value ordering.",
"enum": [
"ORDER_TYPE_UNSPECIFIED",
"ALPHANUMERIC",
"CASE_INSENSITIVE_ALPHANUMERIC",
"NUMERIC"
],
"enumDescriptions": [
"Unspecified.",
"Alphanumeric sort by Unicode code point. For example, \"2\" < \"A\" < \"X\" < \"b\" < \"z\".",
"Case insensitive alphanumeric sort by lower case Unicode code point. For example, \"2\" < \"A\" < \"b\" < \"X\" < \"z\".",
"Dimension values are converted to numbers before sorting. For example in NUMERIC sort, \"25\" < \"100\", and in `ALPHANUMERIC` sort, \"100\" < \"25\". Non-numeric dimension values all have equal ordering value below all numeric values."
],
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessOrderByMetricOrderBy": {
"description": "Sorts by metric values.",
"id": "GoogleAnalyticsAdminV1betaAccessOrderByMetricOrderBy",
"properties": {
"metricName": {
"description": "A metric name in the request to order by.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessQuota": {
"description": "Current state of all quotas for this Analytics property. If any quota for a property is exhausted, all requests to that property will return Resource Exhausted errors.",
"id": "GoogleAnalyticsAdminV1betaAccessQuota",
"properties": {
"concurrentRequests": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"description": "Properties can use up to 50 concurrent requests."
},
"serverErrorsPerProjectPerHour": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"description": "Properties and cloud project pairs can have up to 50 server errors per hour."
},
"tokensPerDay": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"description": "Properties can use 250,000 tokens per day. Most requests consume fewer than 10 tokens."
},
"tokensPerHour": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"description": "Properties can use 50,000 tokens per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas."
},
"tokensPerProjectPerHour": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"description": "Properties can use up to 25% of their tokens per project per hour. This amounts to Analytics 360 Properties can use 12,500 tokens per project per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessQuotaStatus": {
"description": "Current state for a particular quota group.",
"id": "GoogleAnalyticsAdminV1betaAccessQuotaStatus",
"properties": {
"consumed": {
"description": "Quota consumed by this request.",
"format": "int32",
"type": "integer"
},
"remaining": {
"description": "Quota remaining after this request.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessRow": {
"description": "Access report data for each row.",
"id": "GoogleAnalyticsAdminV1betaAccessRow",
"properties": {
"dimensionValues": {
"description": "List of dimension values. These values are in the same order as specified in the request.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessDimensionValue"
},
"type": "array"
},
"metricValues": {
"description": "List of metric values. These values are in the same order as specified in the request.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessMetricValue"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccessStringFilter": {
"description": "The filter for strings.",
"id": "GoogleAnalyticsAdminV1betaAccessStringFilter",
"properties": {
"caseSensitive": {
"description": "If true, the string value is case sensitive.",
"type": "boolean"
},
"matchType": {
"description": "The match type for this filter.",
"enum": [
"MATCH_TYPE_UNSPECIFIED",
"EXACT",
"BEGINS_WITH",
"ENDS_WITH",
"CONTAINS",
"FULL_REGEXP",
"PARTIAL_REGEXP"
],
"enumDescriptions": [
"Unspecified",
"Exact match of the string value.",
"Begins with the string value.",
"Ends with the string value.",
"Contains the string value.",
"Full match for the regular expression with the string value.",
"Partial match for the regular expression with the string value."
],
"type": "string"
},
"value": {
"description": "The string value used for the matching.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccount": {
"description": "A resource message representing a Google Analytics account.",
"id": "GoogleAnalyticsAdminV1betaAccount",
"properties": {
"createTime": {
"description": "Output only. Time when this account was originally created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"deleted": {
"description": "Output only. Indicates whether this Account is soft-deleted or not. Deleted accounts are excluded from List results unless specifically requested.",
"readOnly": true,
"type": "boolean"
},
"displayName": {
"description": "Required. Human-readable display name for this account.",
"type": "string"
},
"gmpOrganization": {
"description": "Output only. The URI for a Google Marketing Platform organization resource. Only set when this account is connected to a GMP organization. Format: marketingplatformadmin.googleapis.com/organizations/{org_id}",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Output only. Resource name of this account. Format: accounts/{account} Example: \"accounts/100\"",
"readOnly": true,
"type": "string"
},
"regionCode": {
"description": "Country of business. Must be a Unicode CLDR region code.",
"type": "string"
},
"updateTime": {
"description": "Output only. Time when account payload fields were last updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAccountSummary": {
"description": "A virtual resource representing an overview of an account and all its child GA4 properties.",
"id": "GoogleAnalyticsAdminV1betaAccountSummary",
"properties": {
"account": {
"description": "Resource name of account referred to by this account summary Format: accounts/{account_id} Example: \"accounts/1000\"",
"type": "string"
},
"displayName": {
"description": "Display name for the account referred to in this account summary.",
"type": "string"
},
"name": {
"description": "Resource name for this account summary. Format: accountSummaries/{account_id} Example: \"accountSummaries/1000\"",
"type": "string"
},
"propertySummaries": {
"description": "List of summaries for child accounts of this account.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaPropertySummary"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest": {
"description": "Request message for AcknowledgeUserDataCollection RPC.",
"id": "GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest",
"properties": {
"acknowledgement": {
"description": "Required. An acknowledgement that the caller of this method understands the terms of user data collection. This field must contain the exact value: \"I acknowledge that I have the necessary privacy disclosures and rights from my end users for the collection and processing of their data, including the association of such data with the visitation information Google Analytics collects from my site and/or app property.\"",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse": {
"description": "Response message for AcknowledgeUserDataCollection RPC.",
"id": "GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse",
"properties": {},
"type": "object"
},
"GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest": {
"description": "Request message for ArchiveCustomDimension RPC.",
"id": "GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest",
"properties": {},
"type": "object"
},
"GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest": {
"description": "Request message for ArchiveCustomMetric RPC.",
"id": "GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest",
"properties": {},
"type": "object"
},
"GoogleAnalyticsAdminV1betaChangeHistoryChange": {
"description": "A description of a change to a single Google Analytics resource.",
"id": "GoogleAnalyticsAdminV1betaChangeHistoryChange",
"properties": {
"action": {
"description": "The type of action that changed this resource.",
"enum": [
"ACTION_TYPE_UNSPECIFIED",
"CREATED",
"UPDATED",
"DELETED"
],
"enumDescriptions": [
"Action type unknown or not specified.",
"Resource was created in this change.",
"Resource was updated in this change.",
"Resource was deleted in this change."
],
"type": "string"
},
"resource": {
"description": "Resource name of the resource whose changes are described by this entry.",
"type": "string"
},
"resourceAfterChange": {
"$ref": "GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource",
"description": "Resource contents from after the change was made. If this resource was deleted in this change, this field will be missing."
},
"resourceBeforeChange": {
"$ref": "GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource",
"description": "Resource contents from before the change was made. If this resource was created in this change, this field will be missing."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource": {
"description": "A snapshot of a resource as before or after the result of a change in change history.",
"id": "GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource",
"properties": {
"account": {
"$ref": "GoogleAnalyticsAdminV1betaAccount",
"description": "A snapshot of an Account resource in change history."
},
"conversionEvent": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent",
"description": "A snapshot of a ConversionEvent resource in change history."
},
"dataRetentionSettings": {
"$ref": "GoogleAnalyticsAdminV1betaDataRetentionSettings",
"description": "A snapshot of a data retention settings resource in change history."
},
"dataStream": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream",
"description": "A snapshot of a DataStream resource in change history."
},
"firebaseLink": {
"$ref": "GoogleAnalyticsAdminV1betaFirebaseLink",
"description": "A snapshot of a FirebaseLink resource in change history."
},
"googleAdsLink": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink",
"description": "A snapshot of a GoogleAdsLink resource in change history."
},
"measurementProtocolSecret": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret",
"description": "A snapshot of a MeasurementProtocolSecret resource in change history."
},
"property": {
"$ref": "GoogleAnalyticsAdminV1betaProperty",
"description": "A snapshot of a Property resource in change history."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaChangeHistoryEvent": {
"description": "A set of changes within a Google Analytics account or its child properties that resulted from the same cause. Common causes would be updates made in the Google Analytics UI, changes from customer support, or automatic Google Analytics system changes.",
"id": "GoogleAnalyticsAdminV1betaChangeHistoryEvent",
"properties": {
"actorType": {
"description": "The type of actor that made this change.",
"enum": [
"ACTOR_TYPE_UNSPECIFIED",
"USER",
"SYSTEM",
"SUPPORT"
],
"enumDescriptions": [
"Unknown or unspecified actor type.",
"Changes made by the user specified in actor_email.",
"Changes made by the Google Analytics system.",
"Changes made by Google Analytics support team staff."
],
"type": "string"
},
"changeTime": {
"description": "Time when change was made.",
"format": "google-datetime",
"type": "string"
},
"changes": {
"description": "A list of changes made in this change history event that fit the filters specified in SearchChangeHistoryEventsRequest.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaChangeHistoryChange"
},
"type": "array"
},
"changesFiltered": {
"description": "If true, then the list of changes returned was filtered, and does not represent all changes that occurred in this event.",
"type": "boolean"
},
"id": {
"description": "ID of this change history event. This ID is unique across Google Analytics.",
"type": "string"
},
"userActorEmail": {
"description": "Email address of the Google account that made the change. This will be a valid email address if the actor field is set to USER, and empty otherwise. Google accounts that have been deleted will cause an error.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaConversionEvent": {
"description": "A conversion event in a Google Analytics property.",
"id": "GoogleAnalyticsAdminV1betaConversionEvent",
"properties": {
"countingMethod": {
"description": "Optional. The method by which conversions will be counted across multiple events within a session. If this value is not provided, it will be set to `ONCE_PER_EVENT`.",
"enum": [
"CONVERSION_COUNTING_METHOD_UNSPECIFIED",
"ONCE_PER_EVENT",
"ONCE_PER_SESSION"
],
"enumDescriptions": [
"Counting method not specified.",
"Each Event instance is considered a Conversion.",
"An Event instance is considered a Conversion at most once per session per user."
],
"type": "string"
},
"createTime": {
"description": "Output only. Time when this conversion event was created in the property.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"custom": {
"description": "Output only. If set to true, this conversion event refers to a custom event. If set to false, this conversion event refers to a default event in GA. Default events typically have special meaning in GA. Default events are usually created for you by the GA system, but in some cases can be created by property admins. Custom events count towards the maximum number of custom conversion events that may be created per property.",
"readOnly": true,
"type": "boolean"
},
"defaultConversionValue": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue",
"description": "Optional. Defines a default value/currency for a conversion event."
},
"deletable": {
"description": "Output only. If set, this event can currently be deleted with DeleteConversionEvent.",
"readOnly": true,
"type": "boolean"
},
"eventName": {
"description": "Immutable. The event name for this conversion event. Examples: 'click', 'purchase'",
"type": "string"
},
"name": {
"description": "Output only. Resource name of this conversion event. Format: properties/{property}/conversionEvents/{conversion_event}",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue": {
"description": "Defines a default value/currency for a conversion event. Both value and currency must be provided.",
"id": "GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue",
"properties": {
"currencyCode": {
"description": "When a conversion event for this event_name has no set currency, this currency will be applied as the default. Must be in ISO 4217 currency code format. See https://en.wikipedia.org/wiki/ISO_4217 for more information.",
"type": "string"
},
"value": {
"description": "This value will be used to populate the value for all conversions of the specified event_name where the event \"value\" parameter is unset.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaCustomDimension": {
"description": "A definition for a CustomDimension.",
"id": "GoogleAnalyticsAdminV1betaCustomDimension",
"properties": {
"description": {
"description": "Optional. Description for this custom dimension. Max length of 150 characters.",
"type": "string"
},
"disallowAdsPersonalization": {
"description": "Optional. If set to true, sets this dimension as NPA and excludes it from ads personalization. This is currently only supported by user-scoped custom dimensions.",
"type": "boolean"
},
"displayName": {
"description": "Required. Display name for this custom dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and underscore starting with a letter. Legacy system-generated display names may contain square brackets, but updates to this field will never permit square brackets.",
"type": "string"
},
"name": {
"description": "Output only. Resource name for this CustomDimension resource. Format: properties/{property}/customDimensions/{customDimension}",
"readOnly": true,
"type": "string"
},
"parameterName": {
"description": "Required. Immutable. Tagging parameter name for this custom dimension. If this is a user-scoped dimension, then this is the user property name. If this is an event-scoped dimension, then this is the event parameter name. If this is an item-scoped dimension, then this is the parameter name found in the eCommerce items array. May only contain alphanumeric and underscore characters, starting with a letter. Max length of 24 characters for user-scoped dimensions, 40 characters for event-scoped dimensions.",
"type": "string"
},
"scope": {
"description": "Required. Immutable. The scope of this dimension.",
"enum": [
"DIMENSION_SCOPE_UNSPECIFIED",
"EVENT",
"USER",
"ITEM"
],
"enumDescriptions": [
"Scope unknown or not specified.",
"Dimension scoped to an event.",
"Dimension scoped to a user.",
"Dimension scoped to eCommerce items"
],
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaCustomMetric": {
"description": "A definition for a custom metric.",
"id": "GoogleAnalyticsAdminV1betaCustomMetric",
"properties": {
"description": {
"description": "Optional. Description for this custom dimension. Max length of 150 characters.",
"type": "string"
},
"displayName": {
"description": "Required. Display name for this custom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and underscore starting with a letter. Legacy system-generated display names may contain square brackets, but updates to this field will never permit square brackets.",
"type": "string"
},
"measurementUnit": {
"description": "Required. The type for the custom metric's value.",
"enum": [
"MEASUREMENT_UNIT_UNSPECIFIED",
"STANDARD",
"CURRENCY",
"FEET",
"METERS",
"KILOMETERS",
"MILES",
"MILLISECONDS",
"SECONDS",
"MINUTES",
"HOURS"
],
"enumDescriptions": [
"MeasurementUnit unspecified or missing.",
"This metric uses default units.",
"This metric measures a currency.",
"This metric measures feet.",
"This metric measures meters.",
"This metric measures kilometers.",
"This metric measures miles.",
"This metric measures milliseconds.",
"This metric measures seconds.",
"This metric measures minutes.",
"This metric measures hours."
],
"type": "string"
},
"name": {
"description": "Output only. Resource name for this CustomMetric resource. Format: properties/{property}/customMetrics/{customMetric}",
"readOnly": true,
"type": "string"
},
"parameterName": {
"description": "Required. Immutable. Tagging name for this custom metric. If this is an event-scoped metric, then this is the event parameter name. May only contain alphanumeric and underscore charactes, starting with a letter. Max length of 40 characters for event-scoped metrics.",
"type": "string"
},
"restrictedMetricType": {
"description": "Optional. Types of restricted data that this metric may contain. Required for metrics with CURRENCY measurement unit. Must be empty for metrics with a non-CURRENCY measurement unit.",
"items": {
"enum": [
"RESTRICTED_METRIC_TYPE_UNSPECIFIED",
"COST_DATA",
"REVENUE_DATA"
],
"enumDescriptions": [
"Type unknown or unspecified.",
"Metric reports cost data.",
"Metric reports revenue data."
],
"type": "string"
},
"type": "array"
},
"scope": {
"description": "Required. Immutable. The scope of this custom metric.",
"enum": [
"METRIC_SCOPE_UNSPECIFIED",
"EVENT"
],
"enumDescriptions": [
"Scope unknown or not specified.",
"Metric scoped to an event."
],
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataRetentionSettings": {
"description": "Settings values for data retention. This is a singleton resource.",
"id": "GoogleAnalyticsAdminV1betaDataRetentionSettings",
"properties": {
"eventDataRetention": {
"description": "The length of time that event-level data is retained.",
"enum": [
"RETENTION_DURATION_UNSPECIFIED",
"TWO_MONTHS",
"FOURTEEN_MONTHS",
"TWENTY_SIX_MONTHS",
"THIRTY_EIGHT_MONTHS",
"FIFTY_MONTHS"
],
"enumDescriptions": [
"Data retention time duration is not specified.",
"The data retention time duration is 2 months.",
"The data retention time duration is 14 months.",
"The data retention time duration is 26 months. Available to 360 properties only.",
"The data retention time duration is 38 months. Available to 360 properties only.",
"The data retention time duration is 50 months. Available to 360 properties only."
],
"type": "string"
},
"name": {
"description": "Output only. Resource name for this DataRetentionSetting resource. Format: properties/{property}/dataRetentionSettings",
"readOnly": true,
"type": "string"
},
"resetUserDataOnNewActivity": {
"description": "If true, reset the retention period for the user identifier with every event from that user.",
"type": "boolean"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataSharingSettings": {
"description": "A resource message representing data sharing settings of a Google Analytics account.",
"id": "GoogleAnalyticsAdminV1betaDataSharingSettings",
"properties": {
"name": {
"description": "Output only. Resource name. Format: accounts/{account}/dataSharingSettings Example: \"accounts/1000/dataSharingSettings\"",
"readOnly": true,
"type": "string"
},
"sharingWithGoogleAnySalesEnabled": {
"description": "Allows any of Google sales to access the data in order to suggest configuration changes to improve results.",
"type": "boolean"
},
"sharingWithGoogleAssignedSalesEnabled": {
"description": "Allows Google sales teams that are assigned to the customer to access the data in order to suggest configuration changes to improve results. Sales team restrictions still apply when enabled.",
"type": "boolean"
},
"sharingWithGoogleProductsEnabled": {
"description": "Allows Google to use the data to improve other Google products or services.",
"type": "boolean"
},
"sharingWithGoogleSupportEnabled": {
"description": "Allows Google support to access the data in order to help troubleshoot issues.",
"type": "boolean"
},
"sharingWithOthersEnabled": {
"description": "Allows Google to share the data anonymously in aggregate form with others.",
"type": "boolean"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataStream": {
"description": "A resource message representing a data stream.",
"id": "GoogleAnalyticsAdminV1betaDataStream",
"properties": {
"androidAppStreamData": {
"$ref": "GoogleAnalyticsAdminV1betaDataStreamAndroidAppStreamData",
"description": "Data specific to Android app streams. Must be populated if type is ANDROID_APP_DATA_STREAM."
},
"createTime": {
"description": "Output only. Time when this stream was originally created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"displayName": {
"description": "Human-readable display name for the Data Stream. Required for web data streams. The max allowed display name length is 255 UTF-16 code units.",
"type": "string"
},
"iosAppStreamData": {
"$ref": "GoogleAnalyticsAdminV1betaDataStreamIosAppStreamData",
"description": "Data specific to iOS app streams. Must be populated if type is IOS_APP_DATA_STREAM."
},
"name": {
"description": "Output only. Resource name of this Data Stream. Format: properties/{property_id}/dataStreams/{stream_id} Example: \"properties/1000/dataStreams/2000\"",
"readOnly": true,
"type": "string"
},
"type": {
"description": "Required. Immutable. The type of this DataStream resource.",
"enum": [
"DATA_STREAM_TYPE_UNSPECIFIED",
"WEB_DATA_STREAM",
"ANDROID_APP_DATA_STREAM",
"IOS_APP_DATA_STREAM"
],
"enumDescriptions": [
"Type unknown or not specified.",
"Web data stream.",
"Android app data stream.",
"iOS app data stream."
],
"type": "string"
},
"updateTime": {
"description": "Output only. Time when stream payload fields were last updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"webStreamData": {
"$ref": "GoogleAnalyticsAdminV1betaDataStreamWebStreamData",
"description": "Data specific to web streams. Must be populated if type is WEB_DATA_STREAM."
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataStreamAndroidAppStreamData": {
"description": "Data specific to Android app streams.",
"id": "GoogleAnalyticsAdminV1betaDataStreamAndroidAppStreamData",
"properties": {
"firebaseAppId": {
"description": "Output only. ID of the corresponding Android app in Firebase, if any. This ID can change if the Android app is deleted and recreated.",
"readOnly": true,
"type": "string"
},
"packageName": {
"description": "Immutable. The package name for the app being measured. Example: \"com.example.myandroidapp\"",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataStreamIosAppStreamData": {
"description": "Data specific to iOS app streams.",
"id": "GoogleAnalyticsAdminV1betaDataStreamIosAppStreamData",
"properties": {
"bundleId": {
"description": "Required. Immutable. The Apple App Store Bundle ID for the app Example: \"com.example.myiosapp\"",
"type": "string"
},
"firebaseAppId": {
"description": "Output only. ID of the corresponding iOS app in Firebase, if any. This ID can change if the iOS app is deleted and recreated.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaDataStreamWebStreamData": {
"description": "Data specific to web streams.",
"id": "GoogleAnalyticsAdminV1betaDataStreamWebStreamData",
"properties": {
"defaultUri": {
"description": "Domain name of the web app being measured, or empty. Example: \"http://www.google.com\", \"https://www.google.com\"",
"type": "string"
},
"firebaseAppId": {
"description": "Output only. ID of the corresponding web app in Firebase, if any. This ID can change if the web app is deleted and recreated.",
"readOnly": true,
"type": "string"
},
"measurementId": {
"description": "Output only. Analytics Measurement ID. Example: \"G-1A2BCD345E\"",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaFirebaseLink": {
"description": "A link between a GA4 property and a Firebase project.",
"id": "GoogleAnalyticsAdminV1betaFirebaseLink",
"properties": {
"createTime": {
"description": "Output only. Time when this FirebaseLink was originally created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Output only. Example format: properties/1234/firebaseLinks/5678",
"readOnly": true,
"type": "string"
},
"project": {
"description": "Immutable. Firebase project resource name. When creating a FirebaseLink, you may provide this resource name using either a project number or project ID. Once this resource has been created, returned FirebaseLinks will always have a project_name that contains a project number. Format: 'projects/{project number}' Example: 'projects/1234'",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaGoogleAdsLink": {
"description": "A link between a GA4 property and a Google Ads account.",
"id": "GoogleAnalyticsAdminV1betaGoogleAdsLink",
"properties": {
"adsPersonalizationEnabled": {
"description": "Enable personalized advertising features with this integration. Automatically publish my Google Analytics audience lists and Google Analytics remarketing events/parameters to the linked Google Ads account. If this field is not set on create/update, it will be defaulted to true.",
"type": "boolean"
},
"canManageClients": {
"description": "Output only. If true, this link is for a Google Ads manager account.",
"readOnly": true,
"type": "boolean"
},
"createTime": {
"description": "Output only. Time when this link was originally created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"creatorEmailAddress": {
"description": "Output only. Email address of the user that created the link. An empty string will be returned if the email address can't be retrieved.",
"readOnly": true,
"type": "string"
},
"customerId": {
"description": "Immutable. Google Ads customer ID.",
"type": "string"
},
"name": {
"description": "Output only. Format: properties/{propertyId}/googleAdsLinks/{googleAdsLinkId} Note: googleAdsLinkId is not the Google Ads customer ID.",
"readOnly": true,
"type": "string"
},
"updateTime": {
"description": "Output only. Time when this link was last updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaKeyEvent": {
"description": "A key event in a Google Analytics property.",
"id": "GoogleAnalyticsAdminV1betaKeyEvent",
"properties": {
"countingMethod": {
"description": "Required. The method by which Key Events will be counted across multiple events within a session.",
"enum": [
"COUNTING_METHOD_UNSPECIFIED",
"ONCE_PER_EVENT",
"ONCE_PER_SESSION"
],
"enumDescriptions": [
"Counting method not specified.",
"Each Event instance is considered a Key Event.",
"An Event instance is considered a Key Event at most once per session per user."
],
"type": "string"
},
"createTime": {
"description": "Output only. Time when this key event was created in the property.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"custom": {
"description": "Output only. If set to true, this key event refers to a custom event. If set to false, this key event refers to a default event in GA. Default events typically have special meaning in GA. Default events are usually created for you by the GA system, but in some cases can be created by property admins. Custom events count towards the maximum number of custom key events that may be created per property.",
"readOnly": true,
"type": "boolean"
},
"defaultValue": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEventDefaultValue",
"description": "Optional. Defines a default value/currency for a key event."
},
"deletable": {
"description": "Output only. If set to true, this event can be deleted.",
"readOnly": true,
"type": "boolean"
},
"eventName": {
"description": "Immutable. The event name for this key event. Examples: 'click', 'purchase'",
"type": "string"
},
"name": {
"description": "Output only. Resource name of this key event. Format: properties/{property}/keyEvents/{key_event}",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaKeyEventDefaultValue": {
"description": "Defines a default value/currency for a key event.",
"id": "GoogleAnalyticsAdminV1betaKeyEventDefaultValue",
"properties": {
"currencyCode": {
"description": "Required. When an occurrence of this Key Event (specified by event_name) has no set currency this currency will be applied as the default. Must be in ISO 4217 currency code format. See https://en.wikipedia.org/wiki/ISO_4217 for more information.",
"type": "string"
},
"numericValue": {
"description": "Required. This will be used to populate the \"value\" parameter for all occurrences of this Key Event (specified by event_name) where that parameter is unset.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListAccountSummariesResponse": {
"description": "Response message for ListAccountSummaries RPC.",
"id": "GoogleAnalyticsAdminV1betaListAccountSummariesResponse",
"properties": {
"accountSummaries": {
"description": "Account summaries of all accounts the caller has access to.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccountSummary"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListAccountsResponse": {
"description": "Request message for ListAccounts RPC.",
"id": "GoogleAnalyticsAdminV1betaListAccountsResponse",
"properties": {
"accounts": {
"description": "Results that were accessible to the caller.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccount"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListConversionEventsResponse": {
"description": "Response message for ListConversionEvents RPC.",
"id": "GoogleAnalyticsAdminV1betaListConversionEventsResponse",
"properties": {
"conversionEvents": {
"description": "The requested conversion events",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListCustomDimensionsResponse": {
"description": "Response message for ListCustomDimensions RPC.",
"id": "GoogleAnalyticsAdminV1betaListCustomDimensionsResponse",
"properties": {
"customDimensions": {
"description": "List of CustomDimensions.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaCustomDimension"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListCustomMetricsResponse": {
"description": "Response message for ListCustomMetrics RPC.",
"id": "GoogleAnalyticsAdminV1betaListCustomMetricsResponse",
"properties": {
"customMetrics": {
"description": "List of CustomMetrics.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaCustomMetric"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListDataStreamsResponse": {
"description": "Response message for ListDataStreams RPC.",
"id": "GoogleAnalyticsAdminV1betaListDataStreamsResponse",
"properties": {
"dataStreams": {
"description": "List of DataStreams.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaDataStream"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListFirebaseLinksResponse": {
"description": "Response message for ListFirebaseLinks RPC",
"id": "GoogleAnalyticsAdminV1betaListFirebaseLinksResponse",
"properties": {
"firebaseLinks": {
"description": "List of FirebaseLinks. This will have at most one value.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaFirebaseLink"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Currently, Google Analytics supports only one FirebaseLink per property, so this will never be populated.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListGoogleAdsLinksResponse": {
"description": "Response message for ListGoogleAdsLinks RPC.",
"id": "GoogleAnalyticsAdminV1betaListGoogleAdsLinksResponse",
"properties": {
"googleAdsLinks": {
"description": "List of GoogleAdsLinks.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaGoogleAdsLink"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListKeyEventsResponse": {
"description": "Response message for ListKeyEvents RPC.",
"id": "GoogleAnalyticsAdminV1betaListKeyEventsResponse",
"properties": {
"keyEvents": {
"description": "The requested Key Events",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaKeyEvent"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListMeasurementProtocolSecretsResponse": {
"description": "Response message for ListMeasurementProtocolSecret RPC",
"id": "GoogleAnalyticsAdminV1betaListMeasurementProtocolSecretsResponse",
"properties": {
"measurementProtocolSecrets": {
"description": "A list of secrets for the parent stream specified in the request.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaListPropertiesResponse": {
"description": "Response message for ListProperties RPC.",
"id": "GoogleAnalyticsAdminV1betaListPropertiesResponse",
"properties": {
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
},
"properties": {
"description": "Results that matched the filter criteria and were accessible to the caller.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaProperty"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaMeasurementProtocolSecret": {
"description": "A secret value used for sending hits to Measurement Protocol.",
"id": "GoogleAnalyticsAdminV1betaMeasurementProtocolSecret",
"properties": {
"displayName": {
"description": "Required. Human-readable display name for this secret.",
"type": "string"
},
"name": {
"description": "Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}",
"readOnly": true,
"type": "string"
},
"secretValue": {
"description": "Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaNumericValue": {
"description": "To represent a number.",
"id": "GoogleAnalyticsAdminV1betaNumericValue",
"properties": {
"doubleValue": {
"description": "Double value",
"format": "double",
"type": "number"
},
"int64Value": {
"description": "Integer value",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaProperty": {
"description": "A resource message representing a Google Analytics GA4 property.",
"id": "GoogleAnalyticsAdminV1betaProperty",
"properties": {
"account": {
"description": "Immutable. The resource name of the parent account Format: accounts/{account_id} Example: \"accounts/123\"",
"type": "string"
},
"createTime": {
"description": "Output only. Time when the entity was originally created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"currencyCode": {
"description": "The currency type used in reports involving monetary values. Format: https://en.wikipedia.org/wiki/ISO_4217 Examples: \"USD\", \"EUR\", \"JPY\"",
"type": "string"
},
"deleteTime": {
"description": "Output only. If set, the time at which this property was trashed. If not set, then this property is not currently in the trash can.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"displayName": {
"description": "Required. Human-readable display name for this property. The max allowed display name length is 100 UTF-16 code units.",
"type": "string"
},
"expireTime": {
"description": "Output only. If set, the time at which this trashed property will be permanently deleted. If not set, then this property is not currently in the trash can and is not slated to be deleted.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"industryCategory": {
"description": "Industry associated with this property Example: AUTOMOTIVE, FOOD_AND_DRINK",
"enum": [
"INDUSTRY_CATEGORY_UNSPECIFIED",
"AUTOMOTIVE",
"BUSINESS_AND_INDUSTRIAL_MARKETS",
"FINANCE",
"HEALTHCARE",
"TECHNOLOGY",
"TRAVEL",
"OTHER",
"ARTS_AND_ENTERTAINMENT",
"BEAUTY_AND_FITNESS",
"BOOKS_AND_LITERATURE",
"FOOD_AND_DRINK",
"GAMES",
"HOBBIES_AND_LEISURE",
"HOME_AND_GARDEN",
"INTERNET_AND_TELECOM",
"LAW_AND_GOVERNMENT",
"NEWS",
"ONLINE_COMMUNITIES",
"PEOPLE_AND_SOCIETY",
"PETS_AND_ANIMALS",
"REAL_ESTATE",
"REFERENCE",
"SCIENCE",
"SPORTS",
"JOBS_AND_EDUCATION",
"SHOPPING"
],
"enumDescriptions": [
"Industry category unspecified",
"Automotive",
"Business and industrial markets",
"Finance",
"Healthcare",
"Technology",
"Travel",
"Other",
"Arts and entertainment",
"Beauty and fitness",
"Books and literature",
"Food and drink",
"Games",
"Hobbies and leisure",
"Home and garden",
"Internet and telecom",
"Law and government",
"News",
"Online communities",
"People and society",
"Pets and animals",
"Real estate",
"Reference",
"Science",
"Sports",
"Jobs and education",
"Shopping"
],
"type": "string"
},
"name": {
"description": "Output only. Resource name of this property. Format: properties/{property_id} Example: \"properties/1000\"",
"readOnly": true,
"type": "string"
},
"parent": {
"description": "Immutable. Resource name of this property's logical parent. Note: The Property-Moving UI can be used to change the parent. Format: accounts/{account}, properties/{property} Example: \"accounts/100\", \"properties/101\"",
"type": "string"
},
"propertyType": {
"description": "Immutable. The property type for this Property resource. When creating a property, if the type is \"PROPERTY_TYPE_UNSPECIFIED\", then \"ORDINARY_PROPERTY\" will be implied.",
"enum": [
"PROPERTY_TYPE_UNSPECIFIED",
"PROPERTY_TYPE_ORDINARY",
"PROPERTY_TYPE_SUBPROPERTY",
"PROPERTY_TYPE_ROLLUP"
],
"enumDescriptions": [
"Unknown or unspecified property type",
"Ordinary GA4 property",
"GA4 subproperty",
"GA4 rollup property"
],
"type": "string"
},
"serviceLevel": {
"description": "Output only. The Google Analytics service level that applies to this property.",
"enum": [
"SERVICE_LEVEL_UNSPECIFIED",
"GOOGLE_ANALYTICS_STANDARD",
"GOOGLE_ANALYTICS_360"
],
"enumDescriptions": [
"Service level not specified or invalid.",
"The standard version of Google Analytics.",
"The paid, premium version of Google Analytics."
],
"readOnly": true,
"type": "string"
},
"timeZone": {
"description": "Required. Reporting Time Zone, used as the day boundary for reports, regardless of where the data originates. If the time zone honors DST, Analytics will automatically adjust for the changes. NOTE: Changing the time zone only affects data going forward, and is not applied retroactively. Format: https://www.iana.org/time-zones Example: \"America/Los_Angeles\"",
"type": "string"
},
"updateTime": {
"description": "Output only. Time when entity payload fields were last updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaPropertySummary": {
"description": "A virtual resource representing metadata for a GA4 property.",
"id": "GoogleAnalyticsAdminV1betaPropertySummary",
"properties": {
"displayName": {
"description": "Display name for the property referred to in this property summary.",
"type": "string"
},
"parent": {
"description": "Resource name of this property's logical parent. Note: The Property-Moving UI can be used to change the parent. Format: accounts/{account}, properties/{property} Example: \"accounts/100\", \"properties/200\"",
"type": "string"
},
"property": {
"description": "Resource name of property referred to by this property summary Format: properties/{property_id} Example: \"properties/1000\"",
"type": "string"
},
"propertyType": {
"description": "The property's property type.",
"enum": [
"PROPERTY_TYPE_UNSPECIFIED",
"PROPERTY_TYPE_ORDINARY",
"PROPERTY_TYPE_SUBPROPERTY",
"PROPERTY_TYPE_ROLLUP"
],
"enumDescriptions": [
"Unknown or unspecified property type",
"Ordinary GA4 property",
"GA4 subproperty",
"GA4 rollup property"
],
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaProvisionAccountTicketRequest": {
"description": "Request message for ProvisionAccountTicket RPC.",
"id": "GoogleAnalyticsAdminV1betaProvisionAccountTicketRequest",
"properties": {
"account": {
"$ref": "GoogleAnalyticsAdminV1betaAccount",
"description": "The account to create."
},
"redirectUri": {
"description": "Redirect URI where the user will be sent after accepting Terms of Service. Must be configured in Cloud Console as a Redirect URI.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaProvisionAccountTicketResponse": {
"description": "Response message for ProvisionAccountTicket RPC.",
"id": "GoogleAnalyticsAdminV1betaProvisionAccountTicketResponse",
"properties": {
"accountTicketId": {
"description": "The param to be passed in the ToS link.",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaRunAccessReportRequest": {
"description": "The request for a Data Access Record Report.",
"id": "GoogleAnalyticsAdminV1betaRunAccessReportRequest",
"properties": {
"dateRanges": {
"description": "Date ranges of access records to read. If multiple date ranges are requested, each response row will contain a zero based date range index. If two date ranges overlap, the access records for the overlapping days is included in the response rows for both date ranges. Requests are allowed up to 2 date ranges.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessDateRange"
},
"type": "array"
},
"dimensionFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpression",
"description": "Dimension filters let you restrict report response to specific dimension values which match the filter. For example, filtering on access records of a single user. To learn more, see [Fundamentals of Dimension Filters](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#dimension_filters) for examples. Metrics cannot be used in this filter."
},
"dimensions": {
"description": "The dimensions requested and displayed in the response. Requests are allowed up to 9 dimensions.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessDimension"
},
"type": "array"
},
"expandGroups": {
"description": "Optional. Decides whether to return the users within user groups. This field works only when include_all_users is set to true. If true, it will return all users with access to the specified property or account. If false, only the users with direct access will be returned.",
"type": "boolean"
},
"includeAllUsers": {
"description": "Optional. Determines whether to include users who have never made an API call in the response. If true, all users with access to the specified property or account are included in the response, regardless of whether they have made an API call or not. If false, only the users who have made an API call will be included.",
"type": "boolean"
},
"limit": {
"description": "The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of 100,000 rows per request, no matter how many you ask for. `limit` must be positive. The API may return fewer rows than the requested `limit`, if there aren't as many remaining rows as the `limit`. For instance, there are fewer than 300 possible values for the dimension `country`, so when reporting on only `country`, you can't get more than 300 rows, even if you set `limit` to a higher value. To learn more about this pagination parameter, see [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).",
"format": "int64",
"type": "string"
},
"metricFilter": {
"$ref": "GoogleAnalyticsAdminV1betaAccessFilterExpression",
"description": "Metric filters allow you to restrict report response to specific metric values which match the filter. Metric filters are applied after aggregating the report's rows, similar to SQL having-clause. Dimensions cannot be used in this filter."
},
"metrics": {
"description": "The metrics requested and displayed in the response. Requests are allowed up to 10 metrics.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessMetric"
},
"type": "array"
},
"offset": {
"description": "The row count of the start row. The first row is counted as row 0. If offset is unspecified, it is treated as 0. If offset is zero, then this method will return the first page of results with `limit` entries. To learn more about this pagination parameter, see [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).",
"format": "int64",
"type": "string"
},
"orderBys": {
"description": "Specifies how rows are ordered in the response.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessOrderBy"
},
"type": "array"
},
"returnEntityQuota": {
"description": "Toggles whether to return the current state of this Analytics Property's quota. Quota is returned in [AccessQuota](#AccessQuota). For account-level requests, this field must be false.",
"type": "boolean"
},
"timeZone": {
"description": "This request's time zone if specified. If unspecified, the property's time zone is used. The request's time zone is used to interpret the start & end dates of the report. Formatted as strings from the IANA Time Zone database (https://www.iana.org/time-zones); for example \"America/New_York\" or \"Asia/Tokyo\".",
"type": "string"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaRunAccessReportResponse": {
"description": "The customized Data Access Record Report response.",
"id": "GoogleAnalyticsAdminV1betaRunAccessReportResponse",
"properties": {
"dimensionHeaders": {
"description": "The header for a column in the report that corresponds to a specific dimension. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessDimensionHeader"
},
"type": "array"
},
"metricHeaders": {
"description": "The header for a column in the report that corresponds to a specific metric. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessMetricHeader"
},
"type": "array"
},
"quota": {
"$ref": "GoogleAnalyticsAdminV1betaAccessQuota",
"description": "The quota state for this Analytics property including this request. This field doesn't work with account-level requests."
},
"rowCount": {
"description": "The total number of rows in the query result. `rowCount` is independent of the number of rows returned in the response, the `limit` request parameter, and the `offset` request parameter. For example if a query returns 175 rows and includes `limit` of 50 in the API request, the response will contain `rowCount` of 175 but only 50 rows. To learn more about this pagination parameter, see [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).",
"format": "int32",
"type": "integer"
},
"rows": {
"description": "Rows of dimension value combinations and metric values in the report.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaAccessRow"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest": {
"description": "Request message for SearchChangeHistoryEvents RPC.",
"id": "GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest",
"properties": {
"action": {
"description": "Optional. If set, only return changes that match one or more of these types of actions.",
"items": {
"enum": [
"ACTION_TYPE_UNSPECIFIED",
"CREATED",
"UPDATED",
"DELETED"
],
"enumDescriptions": [
"Action type unknown or not specified.",
"Resource was created in this change.",
"Resource was updated in this change.",
"Resource was deleted in this change."
],
"type": "string"
},
"type": "array"
},
"actorEmail": {
"description": "Optional. If set, only return changes if they are made by a user in this list.",
"items": {
"type": "string"
},
"type": "array"
},
"earliestChangeTime": {
"description": "Optional. If set, only return changes made after this time (inclusive).",
"format": "google-datetime",
"type": "string"
},
"latestChangeTime": {
"description": "Optional. If set, only return changes made before this time (inclusive).",
"format": "google-datetime",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of ChangeHistoryEvent items to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 items will be returned. The maximum value is 200 (higher values will be coerced to the maximum).",
"format": "int32",
"type": "integer"
},
"pageToken": {
"description": "Optional. A page token, received from a previous `SearchChangeHistoryEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchChangeHistoryEvents` must match the call that provided the page token.",
"type": "string"
},
"property": {
"description": "Optional. Resource name for a child property. If set, only return changes made to this property or its child resources. Format: properties/{propertyId} Example: `properties/100`",
"type": "string"
},
"resourceType": {
"description": "Optional. If set, only return changes if they are for a resource that matches at least one of these types.",
"items": {
"enum": [
"CHANGE_HISTORY_RESOURCE_TYPE_UNSPECIFIED",
"ACCOUNT",
"PROPERTY",
"FIREBASE_LINK",
"GOOGLE_ADS_LINK",
"GOOGLE_SIGNALS_SETTINGS",
"CONVERSION_EVENT",
"MEASUREMENT_PROTOCOL_SECRET",
"DATA_RETENTION_SETTINGS",
"DISPLAY_VIDEO_360_ADVERTISER_LINK",
"DISPLAY_VIDEO_360_ADVERTISER_LINK_PROPOSAL",
"DATA_STREAM",
"ATTRIBUTION_SETTINGS"
],
"enumDescriptions": [
"Resource type unknown or not specified.",
"Account resource",
"Property resource",
"FirebaseLink resource",
"GoogleAdsLink resource",
"GoogleSignalsSettings resource",
"ConversionEvent resource",
"MeasurementProtocolSecret resource",
"DataRetentionSettings resource",
"DisplayVideo360AdvertiserLink resource",
"DisplayVideo360AdvertiserLinkProposal resource",
"DataStream resource",
"AttributionSettings resource"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsResponse": {
"description": "Response message for SearchAccounts RPC.",
"id": "GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsResponse",
"properties": {
"changeHistoryEvents": {
"description": "Results that were accessible to the caller.",
"items": {
"$ref": "GoogleAnalyticsAdminV1betaChangeHistoryEvent"
},
"type": "array"
},
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
}
},
"type": "object"
},
"GoogleProtobufEmpty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
"id": "GoogleProtobufEmpty",
"properties": {},
"type": "object"
}
},
"servicePath": "",
"title": "Google Analytics Admin API",
"version": "v1beta",
"version_module": true
} |