@itentialopensource/adapter-incognito_soap
Version:
This adapter integrates with system described as: incognitoSoapService.
71 lines • 1.48 kB
JSON
{
"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": "Genric SOAP Call",
"description": "Genric SOAP Call",
"operationId": "genericSoapCall",
"parameters": [
{
"name": "service",
"in": "path",
"description": "incognito service",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/xml": {
"schema": {
"title": "soapPayload",
"type": "string"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/xml": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
},
"components": {
"schemas": {}
},
"tags": [
{
"name": "SOAP",
"description": ""
}
]
}