openapi: 3.0.0
info:
  title: Incognito SOAP Service
  description: SOAP call for the Incognito Services
  contact: {}
  version: '1.0'
servers:
- url: http://www.incognito.com/
  variables: {}
paths:
  /axis2/services/{service}:
    post:
      tags:
      - SOAP
      summary: genericSoapCall
      description: Genric SOAP Call
      operationId: genericSoapCall
      parameters:
      - name: service
        in: path
        description: incognito service
        required: true
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          enum:
          - application/xml
          type: string
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              type: string
              xml:
                name: body
                attribute: false
                wrapped: false
        required: true
      responses:
        '200':
          description: Successful response
          headers: {}
          content:
            application/xml:
              schema:
                type: string
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
      deprecated: false
tags:
- name: SOAP
  description: ''
