Ascio Web Service v3

NodeJS StartRegistrantVerification

Trigger the Registrant Verification process at Ascio. The customers email is passed in the "value" field. Please click here for more information about the process: Registrant Verification process.

StartRegistrantVerificationResponse StartRegistrantVerification(SecurityHeaderDetails securityHeader,StartRegistrantVerificationRequest request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
404Object not found

StartRegistrantVerification Request

Property
request

StartRegistrantVerificationResponse

PropertyDescription
StartRegistrantVerificationResult
VerificationProcessStarted
RegistrantVerificationInfo
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

NodeJS example

var soap = require("soap");

var startRegistrantVerificationExample = function(callback) {

	//StartRegistrantVerificationRequest
	request =  {};
	request.Email="administrator@ascio-test-domain.com";	
	soap.createClient("https://aws.demo.ascio.com/v3/aws.wsdl", function(err, client) {
		if(err) {
			callback(err);
		} 
		else {
			const header = {
				SecurityHeaderDetails : {
					Account: "ascio-account",
					Password: "mypassword123"
				}			
			};
			const ns="http://www.ascio.com/2013/02";
			client.addSoapHeader(header, ns, "q1");
			client.StartRegistrantVerification({request: request}, function(err,result) {
				if(err) {
					callback({error: err, request : result.request.body});
				} else {
					if(result.StartRegistrantVerificationResult.ResultCode < 400) {
						callback(null,result);	
					} else {
						callback({error: result.StartRegistrantVerificationResult,request : request});
					}
				}
			});
		};
	});
};
startRegistrantVerificationExample(function(err,result) {
	if(err) {
		console.log("\n\n Request \n\n",err.request, "\n\n Response \n\n" ,err.error,"\n");
	}
	else {
		console.log(result);
	}
});
WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.