Ascio Web Service v2
C# CreateContact
Response CreateContact(string sessionId,Contact contact)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
501 | Syntax error in parameters or arguments | |
506 | Required attribute missing in request |
CreateContact Request
Property | Description |
---|---|
sessionId | Example: o58t9fjgw9bjarp6q7byv13e |
contact |
CreateContactResponse
Property |
---|
CreateContactResult |
contact |
C# example
AscioServices services = new ServiceReference1.AscioServices();
Contact contact = new 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";;
Response response = services.CreateContact(todo);
if (response.ResultCode == 200) {
Console.WriteLine("OK");
} else {
Console.WriteLine("Error: "+response.ResultMessage+" ("+response.resultMessage+")";
}
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.