Ascio Web Service v2

NodeJS UpdateContact

Updating a contact based on a specific contact handle. No domaindata at the registry is changed. This method is only updating internal data, that will be used for the next orders. For a contact-update at the registry the OrderType Contact_Update" is needed.

Response UpdateContact(string sessionId,Contact contact)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Syntax error in parameters or arguments
506Required attribute missing in request

UpdateContact Request

PropertyDescription
sessionIdExample: o58t9fjgw9bjarp6q7byv13e
contact

UpdateContactResponse

Property
UpdateContactResult

NodeJS example

var soap = require("soap");

var updateContactExample = function(callback) {

	//Contact
	contact =  {};
	contact.Status="StatusTest";
	contact.Handle="JD123";
	contact.FirstName="John";
	contact.LastName="Doe";
	contact.OrgName="Ascio";
	contact.Address1="Address1Test";
	contact.Address2="Address2Test";
	contact.PostalCode="888349";
	contact.City="CityTest";
	contact.State="StateTest";
	contact.CountryCode="DK";
	contact.Email="administrator@ascio-test-domain.com";
	contact.Phone="+45.123456789";
	contact.Fax="+45.987654321";
	contact.Type="owner";
	contact.Details="DetailsTest";
	contact.OrganisationNumber="OrganisationNumberTest";	
	soap.createClient("../AscioServiceTest.wsdl", function(err, client) {
		if(err) {
			callback(err);
		} 
		else {
			client.UpdateContact({sessionId: "sessionId", contact: contact}, function(err,result) {
				if(err) {
					callback({error: err, request : result.request.body});
				} else {
					if(result.UpdateContactResult.ResultCode < 400) {
						callback(null,result);	
					} else {
						callback({error: result.UpdateContactResult,request : request});
					}
				}
			});
		};
	});
};
updateContactExample(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 v2
https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl (OTE)
https://aws.ascio.com/2012/01/01/AscioService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.