> ## Documentation Index
> Fetch the complete documentation index at: https://developers.closebot.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Time zones configured on the agency's sources, used to pick a sensible default for
time-of-day analytics (see the hourOfWeek resolution on POST /analytics/query).



## OpenAPI

````yaml https://megastream25-api.closebot.com/swagger/v1/swagger.json get /analytics/source-timezones
openapi: 3.0.4
info:
  title: CloseBot API
  version: v1
servers:
  - url: https://api.closebot.com
    description: CloseBot API Endpoint
security:
  - Key: []
tags:
  - name: Account
  - name: AccountNotification
  - name: Agency
  - name: Analytics
  - name: Billing
  - name: Bot
  - name: BotMetric
  - name: BotSourceVariable
  - name: BotTemplate
  - name: BotTesting
  - name: Dashboard
  - name: Hierarchy
  - name: Lead
  - name: Leaderboard
  - name: Library
  - name: LiveDemo
  - name: Notification
  - name: Persona
  - name: Report
  - name: SmartFAQ
  - name: Source
  - name: SourceChannel
  - name: Webhook
paths:
  /analytics/source-timezones:
    get:
      tags:
        - Analytics
      summary: >-
        Time zones configured on the agency's sources, used to pick a sensible
        default for

        time-of-day analytics (see the hourOfWeek resolution on POST
        /analytics/query).
      parameters:
        - name: sourceIds
          in: query
          schema:
            type: array
            items:
              type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AnalyticsSourceTimeZonesResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsSourceTimeZonesResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/AnalyticsSourceTimeZonesResponse'
components:
  schemas:
    AnalyticsSourceTimeZonesResponse:
      required:
        - timeZones
      type: object
      properties:
        defaultTimeZone:
          type: string
          description: >-
            The single time zone every source in scope agrees on, or null when
            they disagree or

            none is configured. Clients use it to seed a picker, falling back to
            the browser zone.
          nullable: true
        timeZones:
          type: array
          items:
            type: string
          description: >-
            Every distinct non-empty time zone configured on the sources in
            scope.
          nullable: true
      additionalProperties: false
  securitySchemes:
    Key:
      type: apiKey
      description: CloseBot API Key Authorization
      name: X-CB-KEY
      in: header

````