info:
  description: No description
  license:
    name: MIT
  title: NonameApp
  version: 0.0.0
openapi: 3.0.0
paths:
  /receive/messages:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  receive/messages:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: '[method description]'
  /test/send_test_msg:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              properties:
                channel_name:
                  type: string
                msg:
                  properties: {}
                  type: object
                priority:
                  type: integer
              required:
              - msg
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                  test/send_test_msg:
                    type: object
                type: object
          description: OK
      summary: '[method description]'
  /test/test:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                  test/test:
                    type: object
                type: object
          description: OK
      summary: '[method description]'
servers:
- description: Api url
  url: http://gateways11.nag:80
