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

# Get version



## OpenAPI

````yaml api-reference/features/operate.json GET /messaging/info/version
openapi: 3.0.3
info:
  title: Operate API methods
  version: 1.0.0
  description: Task-focused operate methods across supported Polymorfa connection types.
servers: []
security: []
paths:
  /messaging/info/version:
    get:
      tags:
        - Info
      summary: Get version
      operationId: nativeGetVersion
      responses:
        '200':
          description: Version info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__VersionResponse'
      security: []
      servers:
        - url: https://api.polymorfa.com
components:
  schemas:
    native__VersionResponse:
      type: object
      properties:
        version:
          type: string
          description: Specifies version for this native version response.
        buildTime:
          type: string
          description: ISO 8601 timestamp when this API build was produced.
        env:
          type: string
          description: Specifies env for this native version response.
        apiVersion:
          type: string
          description: Specifies api version for this native version response.
        minSupportedVersion:
          type: string
          description: Specifies min supported version for this native version response.
      required:
        - version
        - buildTime
        - env
        - apiVersion
        - minSupportedVersion

````