Internet Object

An Object related to accepting payments via a webpage. This is required if Bank Card Internet Acceptance Percentage is greater than 0%. Failure to include relevant fields may result in an increased underwriting turnaround time.


Days Between Order and Shipping

Description

The days between when an order is placed and when the product / service is delivered.

JSON String

internet_days_between_order_and_shipping

Type

Double

Required

No


Deposit Required

Description

For future delivery, is a deposit required?

JSON String

internet_deposit_required

Type

Boolean

Required

No


Deposit

Description

If a deposit is required, what percentage of the product / service is requested?

JSON String

internet_deposit

Type

Double

Required

Conditional

Comments

Required if Deposit Required = True


Shipped Goods

Description

How are goods shipped?

JSON String

internet_shipped_goods

Type

String. Static Variables below.

Required

No

Comment

Valid Values Below:

XS_SHIPPED_GOODS_FEDEX = "FedEx";

XS_SHIPPED_GOODS_UPS = "UPS";

XS_SHIPPED_GOODS_USPS = "USPS";

XS_SHIPPED_GOODS_COMMON_FREIGHT = "Common Freight";

XS_SHIPPED_GOODS_ELECTRONIC_DELIVERY_DOWNLOAD = "Electronic Delivery / Download";

XS_SHIPPED_GOODS_NOT_APPLICABLE = "Not Applicable";

XS_SHIPPED_GOODS_OTHER = "Other";


Return Policy

Description

What is the return policy you use?

JSON String

internet_return_policy

Type

String. Static Variables below.

Required

No

Comment

Valid Value Below:

XS_RETURN_POLICY_FULL_REFUND = "Full Refund";

XS_RETURN_POLICY_STORE_CREDIT = "Store Credit";

XS_RETURN_POLICY_NO_REFUNDS = "No Refunds";


Return Policy Time Period

Description

What is the number of days that a product / service can be returned for a refund?

JSON String

internet_return_policy_time_period

Type

String

Required

No

Comments

Number of days. Max Length 3.


Fulfillment Vendor Utilized

Description

Indicates whether or not Fulfillment Vendors are utilized.

JSON String

internet_fulfillment_vendor_utilized

Type

Boolean

Required

No


Fulfillment Vendor

Description

Name of the company that is the Fulfillment Vendor.

JSON String

internet_fulfillment_vendor

Type

String

Required

No


Fulfillment Vendor Phone Number

Description

Phone number of the company that is the Fulfillment Vendor.

JSON String

internet_fulfillment_vendor_phone_number

Type

String

Required

No

Comments

Format: (NNN)NNN-NNNN


Inventory Owner

Description

Who owns the inventory?

JSON String

internet_inventory_owner

Type

String. Static Variables below.

Required

No

Comment

Valid Values Below:

XS_INVENTORY_OWNER_MERCHANT = "Merchant";

XS_INVENTORY_OWNER_VENDOR = "Vendor";


Percent of Sales to Non-US Cardholders

Description

Percentage of sales that are from using non-U.S. cardholders.

JSON String

internet_percent_of_sales_to_non_us_cardholders

Type

Double

Required

Yes


Website IP Address

Description

The IP address of the website collecting payments.

JSON String

internet_website_ip

Type

String.

Required

Yes


Applicant Owns Web Domain and Content

Description

Used to determine if the Merchant applying owns their own web domain and content or not.

JSON String

internet_applicant_owns_web_domain_and_content

Type

Boolean

Required

Yes


Temporary Login Credentials

Description

Contains the username and password needed to access the website.

JSON String

internet_temp_login_credentials

Type

String

Required

No

Comments

The username and password should be delimited by a forward slash.


Policies Accessible on Website

Description

Which policies are accessible from the Merchant's website?

JSON String

internet_policies_accessible_on_website

Type

String. Static Variables below.

Required

Yes

Comment

Valid Values Below:

XS_POLICIES_AVAILABLE_ON_WEBSITE_PRIVACY_POLICY = "Privacy Policy"              

XS_POLICIES_AVAILABLE_ON_WEBSITE_RETURN_AND_REFUND_POLICY = "Return and Refund Policy";

XS_POLICIES_AVAILABLE_ON_WEBSITE_TERMS_OF_CONDITION_OF_SALE = "Terms of Condition of Sale";


Web Host Vendor Name

Description

The name of the Vendor the account is using for web hosting.

JSON String

internet_web_host_vendor_name

Type

String

Required

No


SSL Certificate Issuer

Description

The issuer of the SSL certificate.

JSON String

internet_ssl_certificate_issuer

Type

String

Required

No


SSL Certificate Number

Description

The SSL certificate’s number.

JSON String

internet_ssl_certificate_number

Type

String

Required

No


SSL Certificate Type

Description

The type of SSL certificate used.

JSON String

internet_ssl_certificate_type

Type

String. Static Variables below.

Required

No

Comment

Valid Values Below:

XS_SSL_CERTIFICATE_TYPE_INDIVIDUAL = "Individual";

XS_SSL_CERTIFICATE_TYPE_SHARED = "Shared";


Gateway Software Vendor

Description

The name of the Vendor providing the gateway / software.

JSON String

internet_gateway_software_vendor

Type

String

Required

Yes


Gateway Software Version

Description

The version of the gateway / software in use.

JSON String

internet_gateway_software_version

Type

String

Required

Yes


Gateway Software Name

Description

The name of the gateway / software in use.

JSON String

internet_gateway_software_name

Type

String

Required

Yes



Internet o_internet = new Interent();
          o_internet.setDaysBetweenOrderAndShipping( 3 );
          o_internet.addShippedGoods( Internet.XS_SHIPPED_GOODS_FEDEX );
          o_internet.addShippedGoods( Internet.XS_SHIPPED_GOODS_UPS );
          o_internet.addReturnPolicy( Internet.XS_RETURN_POLICY_FULL_REFUND );
          o_internet.setFulfillmentVendorUtilizied( false );
          o_internet.setPercentOfSalesToNonUsCardholders( 2 );
          o_internet.setWebsiteIp( "192.168.1.0" );
          o_internet.addPoliciesAccessibleOnWebsite( Internet.XS_POLICIES_AVAILABLE_ON_WEBSITE_PRIVACY_POLICY );
          o_internet.addPoliciesAccessibleOnWebsite( Internet.XS_POLICIES_AVAILABLE_ON_WEBSITE_RETURN_AND_REFUND_POLICY );
          o_internet.addPoliciesAccessibleOnWebsite( Internet.XS_POLICIES_AVAILABLE_ON_WEBSITE_TERMS_OF_CONDITION_OF_SALE );
          o_internet.setGatewaySoftwareVendor( "Base Commerce" );
          o_internet.setGatewaySoftwareVersion( "1.25" );
          o_internet.setGatewaySoftwareName( "BaseLink" );
o_location.setInternet( o_internet );