n8n-nodes-soaprequest
Version:
n8n node for soap requests
35 lines • 985 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SoapApi = void 0;
class SoapApi {
constructor() {
this.name = 'soapApi';
this.displayName = 'SOAP API';
this.properties = [
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
}
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
username: '={{$credentials.username}}',
password: '={{$credentials.password}}',
},
},
};
}
}
exports.SoapApi = SoapApi;
//# sourceMappingURL=SoapApi.credentials.js.map