Option
|
Description
|
Access Token
|
An automatically generated key that is used for connecting to BigCommerce using OAuth authentication. See BigCommerce documentation for more information on how to get it.
|
API Version
|
The version of BigCommerce API to use - API v2 or v3.
|
Authentication Token
|
An automatically generated key that is used for connecting to BigCommerce using basic authentication. See BigCommerce documentation for more information on how to get it.
|
Authentication Type
|
Determines whether to use legacy Basic-Auth credentials or OAuth tokens for authentication.
|
Client Id
|
A unique ID of a BigCommerce client application. Used only for OAuth authentication. See BigCommerce documentation for more information on how to get it.
|
Connection Lifetime
|
When a connection is returned to the pool, its creation time is compared with the current time, and the connection is destroyed if that time span (in seconds) exceeds the value specified by Connection Lifetime. The default value is 0 (connection always returns to pool).
|
Connection Timeout
|
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. The default value is 15.
|
Default Command Timeout
|
The time in seconds to wait while trying to execute a command before terminating the attempt and generating an error.
|
Failover Retries
|
The number of retry attempts to re-run a command in case when the command failed because of an exception, that indicates that the reason of the failure may be temporary.
|
Local SQL Engine
|
Determines whether to enable local SQL processing (enabled by default). Local SQL processing allows performing complex SELECT statements that cannot be directly compiled to BigCommerce API calls. In this case ll the data from the mentioned cloud objects is queried to the local cache, and then the query is performed against the cache.
If local SQL processing is disabled, only simple SELECT statements that can be directly translated into BigCommerce API calls can be used. More complex SELECT statements will fail.
|
Max Pool Size
|
The maximum number of connections allowed in the pool. Setting the Max Pool Size value in the connection string can affect performance. The default value is 100.
|
Min Pool Size
|
The minimum number of connections allowed in the pool. The default value is 0.
|
Persist Security Info
|
Indicates if security-sensitive information, such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state.
|
Pooling
|
If true, by default, the connection is drawn from the appropriate pool or is created and added to the appropriate pool.
|
Proxy Host
|
The host name or IP address of proxy server.
|
Proxy Password
|
The password for the proxy server account.
|
Proxy Port
|
The port number of the proxy server. The default value is 3128.
|
Proxy User
|
The proxy server account name.
|
Readonly
|
Indicates whether the connection is read-only (allows only SELECT statements).
|
Server
|
The API Path - the path where all XML requests to BigCommerce should be sent.
|
Store Dates
|
Determines whether to treat date values as dates in the BigCommerce store timezone. Please note that the UTC Dates parameter has a higher priority, and if it is set to True, date values are treated as UTC dates regardless of the Store Dates value.
|
Store Id
|
A unique identifier of the store (the first part of the store URL after the protocol). Used only for OAuth authentication.
|
Token Server
|
Not used for BigCommerce.
|
Use Custom Fields
|
Determines whether you will be able to get product custom fields via the CustomFields field of the Products object through this connection. Applicable only for BigCommerce API v3 connections. If set to True, this field returns a JSON array, containing information about custom fields and their values for products, if such are available. Otherwise, it always returns null values.
This parameter does not affect working with custom fields for customers and customer addresses, and it also does not affect access to product custom fields via the ProductCustomFields object.
Please note that processing custom fields may take an additional time and API calls, so it's recommended to set this parameter to True only if you need to work with product custom fields via this connection.
|
User ID
|
The BigCommerce user name to login with.
|
UTC Dates
|
If set to True, dates will be converted to UTC format during import, and the date values entered by the user (in SELECT statements, etc.) are considered UTC dates when sending them to the data source.
|