info:
  description: No description
  license:
    name: MIT
  title: NonameApp
  version: 0.0.0
openapi: 3.0.0
paths:
  /admin/low_credit_reset:
    post:
      description: '[method description]'
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  admin/low_credit_reset:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: '[method description]'
  /receive/dlr:
    post:
      description: "\n        Receive delivery reports\n        "
      requestBody:
        content:
          application/json:
            schema:
              properties:
                msg_id:
                  description: The message id for each messages in the request
                  type: string
                originator:
                  description: The Sender/Header of a message
                  type: string
                recipient:
                  description: Destination number
                  type: string
                request_id:
                  description: Request identification number
                  type: string
                status:
                  description: Status of the message
                  type: string
              required:
              - request_id
              - msg_id
              - recipient
              - originator
              - status
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  receive/dlr:
                    type: object
                  status:
                    example: 200
                    type: number
                  status_message:
                    example: OK
                    type: string
                type: object
          description: OK
      summary: Receive delivery reports
  /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.cas:80
