Ascio Web Service v3
Class TreatyOrStatuteMark
Property | Type | Description |
---|---|---|
Title | Title of statute or treaty | |
ReferenceNumber | Reference number of the mark | |
Country | Country in which the mark was granted protection Example: "DK" | |
Region | Region in which the mark was granted protection | |
ProtectionDate | The date of protection of the mark | |
ExecutionDate | Date of execution of the statute or treaty | |
Handle | Ascio Handle of the mark object Example: "JD123" | |
MarkName | Name of the mark | |
MarkId | ||
AuthInfo | Example: "X4FF!zu" | |
ServiceType | ||
GoodsAndServicesDescription | Exact description of the goods and services for which a registered trademark is protected | |
Labels | List of domain names without its TLD extension) | |
ClaimEmailNotification1 | ||
ClaimEmailNotification2 | ||
ClaimEmailNotification3 | ||
ClaimEmailNotification4 | ||
ClaimEmailNotification5 | ||
NotificationFrequency | ||
Owner | Mark Holder | |
Reseller | Mark Reseller | |
Extensions | ||
ObjectComment | Example: "Example Object Comment" |
Used in Classes
AscioServices services = new ServiceReference1.AscioServiceClient();
SecurityHeaderDetails securityHeader = new SecurityHeaderDetails();
securityHeader.Account = "username";
securityHeader.Password = "password";
Registrant owner = new Registrant();
owner.FirstName = "John";
owner.FirstNameSpecified = true;
owner.LastName = "Doe";
owner.LastNameSpecified = true;
owner.OrgName = "Ascio";
owner.OrgNameSpecified = true;
owner.Address1 = "Address1Test";
owner.Address1Specified = true;
owner.Address2 = "Address2Test";
owner.Address2Specified = true;
owner.City = "CityTest";
owner.CitySpecified = true;
owner.State = "StateTest";
owner.StateSpecified = true;
owner.PostalCode = "888349";
owner.PostalCodeSpecified = true;
owner.CountryCode = "DK";
owner.CountryCodeSpecified = true;
owner.Phone = "+45.123456789";
owner.PhoneSpecified = true;
owner.Fax = "+45.987654321";
owner.FaxSpecified = true;
owner.Email = "administrator@ascio-test-domain.com"
owner.Type = "owner";
owner.TypeSpecified = true;
owner.Details = "DetailsTest";
owner.DetailsSpecified = true;
owner.OrganisationNumber = "OrganisationNumberTest";
owner.OrganisationNumberSpecified = true;
owner.VatNumber = "VatNumberTest";
owner.VatNumberSpecified = true;
owner.NexusCategory = "NexusCategoryTest";
owner.NexusCategorySpecified = true;
KeyValue keyValue = new KeyValue();
keyValue.Key = "Title";
keyValue.KeySpecified = true;
keyValue.Value = "Mr.";
keyValue.ValueSpecified = true;
Extensions resellerExtensions = new Extensions({(
new KeyValue("Title", "Mrs.")
}
);
Contact reseller = new Contact();
reseller.FirstName = "John";
reseller.FirstNameSpecified = true;
reseller.LastName = "Doe";
reseller.LastNameSpecified = true;
reseller.OrgName = "Ascio";
reseller.OrgNameSpecified = true;
reseller.Address1 = "Address1Test";
reseller.Address1Specified = true;
reseller.Address2 = "Address2Test";
reseller.Address2Specified = true;
reseller.City = "CityTest";
reseller.CitySpecified = true;
reseller.State = "StateTest";
reseller.StateSpecified = true;
reseller.PostalCode = "888349";
reseller.PostalCodeSpecified = true;
reseller.CountryCode = "DK";
reseller.CountryCodeSpecified = true;
reseller.Phone = "+45.123456789";
reseller.PhoneSpecified = true;
reseller.Fax = "+45.987654321";
reseller.FaxSpecified = true;
reseller.Email = "administrator@ascio-test-domain.com"
reseller.Type = "owner";
reseller.TypeSpecified = true;
reseller.Details = "DetailsTest";
reseller.DetailsSpecified = true;
reseller.OrganisationNumber = "OrganisationNumberTest";
reseller.OrganisationNumberSpecified = true;
reseller.Extensions = resellerExtensions;
KeyValue keyValue = new KeyValue();
keyValue.Key = "Title";
keyValue.KeySpecified = true;
keyValue.Value = "Mr.";
keyValue.ValueSpecified = true;
Extensions treatyOrStatuteMarkExtensions = new Extensions(array($keyValue));
TreatyOrStatuteMark treatyOrStatuteMark = new TreatyOrStatuteMark();
treatyOrStatuteMark.Handle = "JD123";
treatyOrStatuteMark.HandleSpecified = true;
treatyOrStatuteMark.MarkName = "MarkNameTest";
treatyOrStatuteMark.MarkNameSpecified = true;
treatyOrStatuteMark.MarkId = "MarkIdTest";
treatyOrStatuteMark.MarkIdSpecified = true;
treatyOrStatuteMark.AuthInfo = "X4FF!zu";
treatyOrStatuteMark.AuthInfoSpecified = true;
treatyOrStatuteMark.ServiceType = MarkServiceType.Standard;
treatyOrStatuteMark.ServiceTypeSpecified = true;
treatyOrStatuteMark.GoodsAndServicesDescription = "GoodsAndServicesDescriptionTest";
treatyOrStatuteMark.GoodsAndServicesDescriptionSpecified = true;
treatyOrStatuteMark.Labels = array(
);
treatyOrStatuteMark.ClaimEmailNotification1 = "ClaimEmailNotification1Test";
treatyOrStatuteMark.ClaimEmailNotification1Specified = true;
treatyOrStatuteMark.ClaimEmailNotification2 = "ClaimEmailNotification2Test";
treatyOrStatuteMark.ClaimEmailNotification2Specified = true;
treatyOrStatuteMark.ClaimEmailNotification3 = "ClaimEmailNotification3Test";
treatyOrStatuteMark.ClaimEmailNotification3Specified = true;
treatyOrStatuteMark.ClaimEmailNotification4 = "ClaimEmailNotification4Test";
treatyOrStatuteMark.ClaimEmailNotification4Specified = true;
treatyOrStatuteMark.ClaimEmailNotification5 = "ClaimEmailNotification5Test";
treatyOrStatuteMark.ClaimEmailNotification5Specified = true;
treatyOrStatuteMark.NotificationFrequency = NotificationFrequencyType.Daily;
treatyOrStatuteMark.NotificationFrequencySpecified = true;
treatyOrStatuteMark.Owner = owner;
treatyOrStatuteMark.Reseller = reseller;
treatyOrStatuteMark.Extensions = treatyOrStatuteMarkExtensions;
treatyOrStatuteMark.ObjectComment = "Example Object Comment";
treatyOrStatuteMark.ObjectCommentSpecified = true;
treatyOrStatuteMark.Title = "TitleTest";
treatyOrStatuteMark.TitleSpecified = true;
treatyOrStatuteMark.ReferenceNumber = "ReferenceNumberTest";
treatyOrStatuteMark.ReferenceNumberSpecified = true;
treatyOrStatuteMark.Country = "DK";
treatyOrStatuteMark.CountrySpecified = true;
treatyOrStatuteMark.Region = "RegionTest";
treatyOrStatuteMark.RegionSpecified = true;
treatyOrStatuteMark.ProtectionDate = new \DateTime();
treatyOrStatuteMark.ProtectionDateSpecified = true;
treatyOrStatuteMark.ExecutionDate = new \DateTime();
treatyOrStatuteMark.ExecutionDateSpecified = true;
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.
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.