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

# Admin VR Logs

> Get paginated virtual receptionist call logs



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json post /v2/admin/reporting/virtual-receptionist/logs
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/reporting/virtual-receptionist/logs:
    post:
      tags:
        - Reporting - Virtual Receptionist
      summary: Admin VR Logs
      description: Get paginated virtual receptionist call logs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                vrId:
                  type: number
                  exclusiveMinimum: 0
                  description: Virtual receptionist ID
                startDate:
                  type: string
                  description: Start date for the report period
                endDate:
                  type: string
                  description: End date for the report period
                tag:
                  description: Filter by call tags
                  minItems: 1
                  type: array
                  items:
                    type: string
                callOutcome:
                  description: Filter by call outcome IDs
                  minItems: 1
                  type: array
                  items:
                    type: number
                recordsPerPage:
                  description: Number of records per page
                  type: number
                page:
                  description: Page number
                  type: number
                reportType:
                  description: Report type (Scheduled, Export, or Live)
                  anyOf:
                    - type: string
                      enum:
                        - Scheduled
                    - type: string
                      enum:
                        - Export
                    - type: string
                      enum:
                        - Live
              required:
                - vrId
                - startDate
                - endDate
              additionalProperties: false
      responses:
        '200':
          description: VR logs or export acknowledgement
          content:
            application/json:
              schema:
                anyOf:
                  - type: object
                    properties:
                      records:
                        type: array
                        items: {}
                        description: Virtual receptionist log records
                      total:
                        type: number
                        description: Total matching records
                      page:
                        type: number
                        description: Current page number
                      maxPage:
                        type: number
                        description: Maximum page number
                    required:
                      - records
                      - total
                      - page
                      - maxPage
                    additionalProperties: false
                    description: Paginated virtual receptionist logs
                  - type: object
                    properties:
                      message:
                        type: string
                        description: Status message
                      code:
                        type: number
                        description: Status code
                    required:
                      - message
                      - code
                    additionalProperties: false
                    description: Export acknowledgement
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````