# request

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    request:
      type: object
      properties:
        command:
          type: string
          description: Command to be executed
        subcommand:
          type: string
          enum:
            - createToken
          description: Sub-Command to be executed
        instance:
          oneOf:
            - &ref_0
              description: Instance index (0-254) to which the command applies.
              $ref: '#/components/schemas/instance%20-%20single'
            - type: array
              items: *ref_0
              description: >-
                List of instance indices (0-254) to which the command applies.
                An empty array applies a command to all instances.
          description: One ore many instance idices the request is to be applied to
      required:
        - command
      additionalProperties: false
      x-apidog-orders:
        - command
        - subcommand
        - instance
        - 01JVN1WX6T5KYAA53J7BRT7FG3
      x-apidog-refs:
        01JVN1WX6T5KYAA53J7BRT7FG3:
          $ref: '#/components/schemas/tan'
      x-apidog-folder: ''
    instance - single:
      type: integer
      minimum: 0
      maximum: 254
      description: Instance index (0-254) to which the command applies.
      x-apidog-folder: ''
    tan:
      type: object
      properties:
        tan:
          type: integer
          minimum: 0
          examples:
            - 4711
          description: Transaction number for tracking requests and responses.
      x-apidog-orders:
        - tan
      title: tan
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: http://{{host}}:8090
    description: Develop Env
  - url: https://{{host}}:8092
    description: Testing Env
security: []

```
