Ascio Web Service v3
Java Axis GetPrices
Please limit the results with Paginate or other filter-options. The list of Prices will contain detailed history of all prices.
GetPricesResponse GetPrices(SecurityHeaderDetails securityHeader,GetPricesRequest request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
501 | Syntax error in parameters or arguments |
GetPrices Request
Property |
---|
request |
GetPricesResponse
Property | Description |
---|---|
GetPricesResult | |
TotalCount | Example: 1 |
Currency | |
Prices | |
ResultCode | Example: 1 |
ResultMessage | |
Errors |
Used in Classes
Java Axis example
package ascio.v3.examples;
import java.util.Calendar;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class GetPricesExample {
public static GetPricesResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
PagingInfo pageInfo = new PagingInfo();
pageInfo.setPageIndex(1);
pageInfo.setPageSize(1);
GetPricesRequest request = new GetPricesRequest();
request.setDate(Calendar.getInstance());
request.setObjectTypes(new ObjectType[]{
"DomainType",
"DefensiveType",
"MarkType",
"NameWatchType",
"SslCertificateType",
"LocalPresence",
"PrivacyProxy",
"MarkExtendedService",
"SanSsl"
});
request.setOrderTypes(new OrderType[]{
"NotSet",
"ContactUpdate",
"ChangeLocks",
"Delete",
"RegistrantDetailsUpdate",
"Expire",
"NameserverUpdate",
"OwnerChange",
"Queue",
"Register",
"Renew",
"Restore",
"Transfer",
"Unexpire",
"TransferAway",
"AutoRenew",
"AutoDelete",
"DetailsUpdate",
"Import",
"PartnerChange",
"DeQueue",
"UpdateAuthInfo",
"Support",
"WhoisDataReminder"
});
request.setTlds(new String[]{
"com",
"net",
"org",
"info",
"biz",
"guru"
});
request.setTldCountryCode("de");
request.setPeriods(new int[]{1, 2, 3});
request.setProductOptions(new String[]{
});
request.setDefaultPeriodsOnly(true);
request.setPageInfo(pageInfo);
request.setTldsInPortfolioOnly("TldsInPortfolioOnlyTest");
DomainTypeDefensiveTypeMarkTypeNameWatchTypeSslCertificateTypeLocalPresencePrivacyProxyMarkExtendedServiceSanSslNotSetContactUpdateChangeLocksDeleteRegistrantDetailsUpdateExpireNameserverUpdateOwnerChangeQueueRegisterRenewRestoreTransferUnexpireTransferAwayAutoRenewAutoDeleteDetailsUpdateImportPartnerChangeDeQueueUpdateAuthInfoSupportWhoisDataRemindercomnetorginfobizguru123
try {
GetPricesResponse response = env.getClient().getPrices(request);
System.out.println("response\n");
System.out.println("GetPrices Code\t:" + response.getResultCode());
System.out.println("GetPrices Message\t: " + response.getResultMessage());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new GetPricesResponse();package ascio.v3.examples;
import java.util.Calendar;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class GetPricesExample {
public static GetPricesResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
PagingInfo pageInfo = new PagingInfo();
pageInfo.setPageIndex(1);
pageInfo.setPageSize(1);
GetPricesRequest request = new GetPricesRequest();
request.setDate(Calendar.getInstance());
request.setObjectTypes(new ObjectType[]{
"DomainType",
"DefensiveType",
"MarkType",
"NameWatchType",
"SslCertificateType",
"LocalPresence",
"PrivacyProxy",
"MarkExtendedService",
"SanSsl"
});
request.setOrderTypes(new OrderType[]{
"NotSet",
"ContactUpdate",
"ChangeLocks",
"Delete",
"RegistrantDetailsUpdate",
"Expire",
"NameserverUpdate",
"OwnerChange",
"Queue",
"Register",
"Renew",
"Restore",
"Transfer",
"Unexpire",
"TransferAway",
"AutoRenew",
"AutoDelete",
"DetailsUpdate",
"Import",
"PartnerChange",
"DeQueue",
"UpdateAuthInfo",
"Support",
"WhoisDataReminder"
});
request.setTlds(new String[]{
"com",
"net",
"org",
"info",
"biz",
"guru"
});
request.setTldCountryCode("de");
request.setPeriods(new int[]{1, 2, 3});
request.setProductOptions(new String[]{
});
request.setDefaultPeriodsOnly(true);
request.setPageInfo(pageInfo);
request.setTldsInPortfolioOnly("TldsInPortfolioOnlyTest");
try {
GetPricesResponse response = env.getClient().getPrices(request);
System.out.println("response\n");
System.out.println("GetPrices Code\t:" + response.getResultCode());
System.out.println("GetPrices Message\t: " + response.getResultMessage());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new GetPricesResponse();
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.