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

# Get partner-wide voice call aggregate summary

> Returns platform-level rollups (active tenant count, total calls, duration, cost) for the same date filters as tenant aggregates. Separate from the paginated per-tenant aggregates endpoint.



## OpenAPI

````yaml GET /partner/voice/calls/aggregates/summary
openapi: 3.0.0
info:
  title: Reach API
  version: 1.0.0
  description: API documentation for Reach platform
servers:
  - url: https://api.embedreach.com
    description: Production server
security: []
paths:
  /partner/voice/calls/aggregates/summary:
    get:
      tags:
        - Partner Voice
      summary: Get partner-wide voice call aggregate summary
      description: >-
        Returns platform-level rollups (active tenant count, total calls,
        duration, cost) for the same date filters as tenant aggregates. Separate
        from the paginated per-tenant aggregates endpoint.
      parameters:
        - name: reach-tenant-id
          in: header
          required: false
          schema:
            type: string
            description: Optional tenant ID to scope the summary to a single tenant.
        - schema:
            type: string
            nullable: true
          required: false
          name: startDate
          in: query
        - schema:
            type: string
            nullable: true
          required: false
          name: endDate
          in: query
      responses:
        '200':
          description: Status 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      activeTenantCount:
                        type: number
                      totalCalls:
                        type: number
                      totalDurationSecs:
                        type: number
                        nullable: true
                      totalCostCents:
                        type: number
                    required:
                      - activeTenantCount
                      - totalCalls
                      - totalDurationSecs
                      - totalCostCents
                required:
                  - success
        '400':
          description: Bad Request - Validation or request error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    default: false
                  message:
                    type: string
                    description: Error message describing what went wrong
                  errors:
                    type: array
                    items:
                      type: string
                    description: Optional array of specific validation errors
                required:
                  - message

````