Skip to content

GetTableTagVersion

Description

      description: |
        Get the version number that a specific tag points to for table `id`.

Request Schema

    GetTableTagVersionRequest:
      type: object
      required:
        - tag
      properties:
        id:
          type: array
          items:
            type: string
        tag:
          type: string
          description: Name of the tag to get version for

Response Schema

    GetTableTagVersionResponse:
      type: object
      required:
        - version
      properties:
        version:
          type: integer
          format: int64
          minimum: 0
          description: version number that the tag points to