Ascio Web Service v2
NodeJS CreateOrder - Contact_Update
Replaces the contact with a new handle. There are 2 ways to submit the new Registrant: With the Contact Update, it is possible to change Tech Contact, Admistrative Contact and Billing Contact in one request.
Response CreateOrder(string sessionId,Order order)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | Order validated | |
200 | Order received | |
400 | Order not validated | Messages |
401 | Authorization failed | |
405 | Access denied |
CreateOrder Request
Property | Description |
---|---|
sessionId | Example: o58t9fjgw9bjarp6q7byv13e |
order |
CreateOrderResponse
Property |
---|
CreateOrderResult |
order |
Property | Value |
OrderType | Contact_Update |
---|
NodeJS example
var soap = require("soap");
var contact_UpdateExample = function(callback) {
//Contact
adminContact = {};
adminContact.Status="StatusTest";
adminContact.Handle="JD123";
adminContact.FirstName="John";
adminContact.LastName="Doe";
adminContact.OrgName="Ascio";
adminContact.Address1="Address1Test";
adminContact.Address2="Address2Test";
adminContact.PostalCode="888349";
adminContact.City="CityTest";
adminContact.State="StateTest";
adminContact.CountryCode="DK";
adminContact.Email="test@gmail.com";
adminContact.Phone="+45.123456789";
adminContact.Fax="+45.987654321";
adminContact.Type="owner";
adminContact.Details="DetailsTest";
adminContact.OrganisationNumber="OrganisationNumberTest";
//Contact
techContact = {};
techContact.Status="StatusTest";
techContact.Handle="JD123";
techContact.FirstName="John";
techContact.LastName="Doe";
techContact.OrgName="Ascio";
techContact.Address1="Address1Test";
techContact.Address2="Address2Test";
techContact.PostalCode="888349";
techContact.City="CityTest";
techContact.State="StateTest";
techContact.CountryCode="DK";
techContact.Email="test@gmail.com";
techContact.Phone="+45.123456789";
techContact.Fax="+45.987654321";
techContact.Type="owner";
techContact.Details="DetailsTest";
techContact.OrganisationNumber="OrganisationNumberTest";
//Contact
billingContact = {};
billingContact.Status="StatusTest";
billingContact.Handle="JD123";
billingContact.FirstName="John";
billingContact.LastName="Doe";
billingContact.OrgName="Ascio";
billingContact.Address1="Address1Test";
billingContact.Address2="Address2Test";
billingContact.PostalCode="888349";
billingContact.City="CityTest";
billingContact.State="StateTest";
billingContact.CountryCode="DK";
billingContact.Email="test@gmail.com";
billingContact.Phone="+45.123456789";
billingContact.Fax="+45.987654321";
billingContact.Type="owner";
billingContact.Details="DetailsTest";
billingContact.OrganisationNumber="OrganisationNumberTest";
//Domain
domain = {};
domain.DomainName="testdomain.com";
domain.AdminContact=adminContact;
domain.TechContact=techContact;
domain.BillingContact=billingContact;
//Order
order = {};
order.Type="Contact_Update";
order.AccountReference="AccountReferenceTest";
order.TransactionComment="TransactionCommentTest";
order.Comments="RegistrarTag";
order.Options="OptionsTest";
order.LocalPresence="off";
order.Domain=domain;
soap.createClient("../AscioServiceTest.wsdl", function(err, client) {
if(err) {
callback(err);
}
else {
client.CreateOrder({sessionId: "sessionId", order: order}, function(err,result) {
if(err) {
callback({error: err , request : result.request.body});
} else {
if(result.CreateOrderResult.ResultCode < 400) {
callback(null,result);
} else {
callback({error: result.CreateOrderResult,request : request});
}
}
});
};
});
};
contact_UpdateExample(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.
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.