Contents

ImpressionShareTimeRange

Time range for impression share queries.

Declaration

object ImpressionShareTimeRange

Properties

NameTypeDescription
start Requireddate

Start date in YYYY-MM-DD format. When granularity is WEEKLY_SUN_SAT, this date must be a Sunday.

end Requireddate

End date in YYYY-MM-DD format.

timeZonestring

Timezone. Fixed to UTC. Not user-configurable. Default: "UTC".

granularity Requiredstring

Aggregation period. DAILY aggregates per day, with a maximum window of 30 days (inclusive), and populates the day field (not the week field) in each row. WEEKLY_SUN_SAT aggregates per Sunday-to-Saturday week, with a maximum window of 4 weeks, and populates the week field (not the day field) with the Sunday start date. The start date must be a Sunday. Possible values: DAILY, WEEKLY_SUN_SAT.

Discussion

The ImpressionShareTimeRange object specifies the date window and granularity for an impression share report.

Example

{
  "start": "2025-01-01",
  "end": "2025-01-30",
  "timeZone": "UTC",
  "granularity": "DAILY"
}

See Also