> ## 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.

# List Parking Sessions

> List a tenant's parking sessions with pagination, sorting, and space search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/parking-sessions/
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/parking-sessions/:
    get:
      tags:
        - Parking Sessions
      summary: List Parking Sessions
      description: >-
        List a tenant's parking sessions with pagination, sorting, and space
        search
      parameters:
        - schema:
            default: 1
            type: integer
            minimum: 0
            maximum: 1
          in: query
          name: paginated
          required: false
          description: 1 = paginated response, 0 = full list
        - schema:
            type: number
          in: query
          name: page
          required: false
          description: Page number
        - schema:
            type: number
          in: query
          name: recordsPerPage
          required: false
          description: Records per page
        - schema:
            type: string
            maxLength: 50
          in: query
          name: sortBy
          required: false
          description: Sort column
        - schema:
            type: string
            enum:
              - asc
              - desc
          in: query
          name: sortDirection
          required: false
          description: Sort direction
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
          description: Tenant ID
        - schema:
            type: string
            maxLength: 50
          in: query
          name: query
          required: false
          description: Search by parking space
      responses:
        '200':
          description: Paginated parking session list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Parking session ID
                        tenantId:
                          type: number
                          description: Tenant ID
                        timeoutId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Timeout destination ID
                        timeoutType:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Timeout destination type
                        state:
                          type: number
                          description: Session state (0/1)
                        space:
                          type: string
                          description: Parking space
                        hostIp:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Host IP
                        useAlternateRing:
                          type: number
                          description: Use alternate ring (0/1)
                        altRingValue:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Alternate ring tone
                        callerIdNum:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Caller ID number
                        callerIdName:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Caller ID name
                        updatedAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Last updated (ISO)
                      required:
                        - id
                        - tenantId
                        - timeoutId
                        - timeoutType
                        - state
                        - space
                        - hostIp
                        - useAlternateRing
                        - altRingValue
                        - callerIdNum
                        - callerIdName
                        - updatedAt
                      additionalProperties: false
                      description: Parking session list item
                  page:
                    type: number
                  maxPage:
                    type: number
                  totalRecords:
                    type: number
                required:
                  - records
                  - page
                  - maxPage
                  - totalRecords
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````