info:
  description: No description
  license:
    name: MIT
  title: NonameApp
  version: 0.0.0
openapi: 3.0.0
paths:
  /debug_generate_feed_sync:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              properties:
                feed:
                  description: Druh feedu
                  enum:
                  - items
                  - stocks
                  type: string
                user_id:
                  description: Id zákazníka
                  type: string
              required:
              - feed
              - user_id
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  debug_generate_feed_sync:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: '[method description]'
  /feed_items:
    post:
      description: "\n        Vrací skladovost pro všechny položky\n        "
      requestBody:
        content:
          application/json:
            schema:
              properties:
                last_changed:
                  description: Vypsat položky upravené od uvedeného data
                  type: string
                user_id:
                  description: Id zákazníka
                  type: string
                user_token:
                  description: Přidělený api klíč
                  type: string
              required:
              - user_id
              - user_token
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  feed_items:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: Vrací skladovost pro všechny položky
  /feed_stocks:
    post:
      description: "\n        Vrací skladovost pro všechny položky\n        - item\
        \ - element pro položku\n        -- id - id\n        -- ean - ean\n      \
        \  -- stock-quantity - množství na skladě\n        "
      requestBody:
        content:
          application/json:
            schema:
              properties:
                user_id:
                  description: Id zákazníka
                  type: string
                user_token:
                  description: Přidělený api klíč
                  type: string
              required:
              - user_id
              - user_token
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  feed_stocks:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: Vrací skladovost pro všechny položky
  /monitoring_test:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  monitoring_test:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: '[method description]'
servers:
- description: Api url
  url: http://seqoycz11-cas:80
