MCP-Server für Google Analytics ausprobieren Installieren Sie das Tool über
GitHub. Weitere Informationen finden Sie in der
Ankündigung.
AccessDateRange
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Ein zusammenhängender Zeitraum von Tagen: startDate, startDate + 1, ..., endDate.
JSON-Darstellung |
{
"startDate": string,
"endDate": string
} |
Felder |
startDate |
string
Das Startdatum der Abfrage im Format YYYY-MM-DD . Darf nicht nach endDate liegen. Das Format NdaysAgo , yesterday oder today ist ebenfalls zulässig. In diesem Fall wird das Datum aus der aktuellen Uhrzeit in der Zeitzone der Anfrage abgeleitet.
|
endDate |
string
Das Enddatum der Abfrage im Format YYYY-MM-DD . Darf nicht vor dem startDate liegen. Das Format NdaysAgo , yesterday oder today ist ebenfalls zulässig. In diesem Fall wird das Datum aus der aktuellen Uhrzeit in der Zeitzone der Anfrage abgeleitet.
|
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-26 (UTC).
[null,null,["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["Defines a date range using a start date and an end date, inclusive of both."],["Dates are represented in `YYYY-MM-DD` format or using relative terms like `NdaysAgo`, `yesterday`, or `today`."],["`startDate` cannot be after `endDate`, and `endDate` cannot be before `startDate`."],["The date values are interpreted based on the request's time zone."]]],["The core content describes a JSON structure for representing a date range. The JSON object contains `startDate` and `endDate` fields, both strings. These fields define an inclusive range of days. The format `YYYY-MM-DD` is required, but `NdaysAgo`, `yesterday`, and `today` are also valid and will infer the date from the request's time zone. `endDate` must not be before `startDate`, and `startDate` must not be after `endDate`.\n"]]