CData Sync App は、WooCommerce データをデータベース、データレイク、またはデータウェアハウスに継続的にパイプライン化する簡単な方法を提供し、分析、レポート、AI、および機械学習で簡単に利用できるようにします。
WooCommerce コネクタはCData Sync アプリケーションから使用可能で、WooCommerce からデータを取得して、サポートされている任意の同期先に移動できます。
Sync App はWooCommerce API を使用してWooCommerce への双方向アクセスを実現します。Sync App はWooCommerce バージョン3.5.x 以降をサポートしています。
必須プロパティについては、設定タブを参照してください。
通常必須ではない接続プロパティについては、高度な設定タブを参照してください。
WooCommerce は、Basic 認証、"one-legged" OAuth 1.0認証、および標準OAuth 2.0認証をサポートします。
Basic 認証を使用して認証するには、以下のプロパティを指定します。
one-legged 認証を使用して認証するには、以下のプロパティを指定します。
以下のサブセクションでは、3つの一般的な認証フローでのWooCommerce への認証について詳しく説明します。カスタムOAuth アプリケーションの作成については、カスタムOAuth アプリケーションの作成 を参照してください。 WooCommerce で利用可能な接続文字列プロパティの全リストは、Connection を参照してください。
OAuth アクセストークンの自動リフレッシュ:
Sync App がOAuth アクセストークンを自動的にリフレッシュするようにするには:
OAuth アクセストークンの手動リフレッシュ:
OAuth アクセストークンを手動でリフレッシュするために必要な唯一の値は、OAuth リフレッシュトークンです。
OAuth リフレッシュトークンを保存し、OAuth アクセストークンの有効期限が切れた後に手動でリフレッシュできるようにします。
このセクションでは、WooCommerce Sync App の高度な機能を厳選して説明します。
Sync App はユーザー定義ビューの使用をサポートします。これは事前設定されたユーザー定義クエリによって内容が決定される仮想テーブルです。 このビューは、ドライバーに発行されるクエリを直接制御できない場合に有効です。 カスタムビューの作成と設定の概要については、ユーザー定義ビュー を参照してください。
SSL の設定 を使用して、Sync App が証明書のネゴシエーションをどのように扱うかを調整します。さまざまな証明書形式を選択できます。詳しくは、「接続文字列オプション」にあるSSLServerCert プロパティを参照してください。
Windows プロキシとHTTP プロキシを含むファイアウォールとプロキシ に合致するようSync App を設定します。トンネル接続を設定することもできます。
詳しくは、クエリ処理 を参照してください。
デフォルトでは、Sync App はサーバーとのTLS のネゴシエーションを試みます。サーバー証明書は、デフォルトのシステム信頼済み証明書ストアで検証されます。SSLServerCert 接続プロパティを使用して、証明書の検証方法をオーバーライドできます。
別の証明書を指定するには、SSLServerCert 接続プロパティを参照してください。
HTTP プロキシへの認証には、以下のように設定します。
次のプロパティを設定します。
このセクションでは、利用可能なAPI オブジェクトを示し、WooCommerce API へのSQL の実行について詳しく説明します。
WooCommerce からのデータへの読み取りまたは書き込みアクセスには、事前定義されたテーブル およびビュー を使用できます。
Sync App を使用すると、ストアドプロシージャ を介してWooCommerce ツールの実行や特定の配送地域の場所の更新ができます。
システムテーブル には、データベースに属するオブジェクトとリソースに関する情報が含まれています。
Sync App はWooCommerce のデータを、標準のSQL ステートメントを使用してクエリできるリレーショナルデータベースのテーブルのリストとしてモデル化します。
| Name | Description |
| Attributes | Retrieve and modify product attributes. |
| Categories | Retrieve product categories. |
| Coupons | Retrieve and modify coupons. |
| Customers | Retrieve and modify customers. |
| OrderLineItems | Add, update and view the line items for an order. |
| OrderNotes | Retrieve and modify the notes for an order. |
| OrderRefunds | Retrieve and modify order refunds. |
| Orders | Retrieve and modify orders. |
| PaymentGateways | Retrieve and modify payment gateways. |
| ProductAttributeTerms | Retrieve the terms for an attribute. |
| ProductReviews | Retrieve and modify products reviews. |
| Products | Retrieve and modify products. |
| ProductShippingClasses | Retrieve and modify product shipping classes. |
| ProductTags | Retrieve and modify product tags. |
| ProductVariations | Retrieve and modify product variations. |
| SettingOptions | View and manage settings options. |
| ShippingZoneMethods | Retrieve and modify shipping zone methods. |
| ShippingZones | Retrieve and modify shipping zones. |
| TaxClasses | Retrieve and modify tax classes. |
| TaxRates | Retrieve and modify tax rates. |
| Webhooks | Retrieve and modify webhooks. |
Retrieve and modify product attributes.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id. All other columns are processed client side.
SELECT * FROM Attributes WHERE Id = 4
The following attribute is required when performing an insert: Name.
INSERT INTO Attributes (Name) VALUES ('attribute_name')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | False |
Attribute ID. | |
| Name | String | False |
Attribute name. | |
| Slug | String | False |
An alphanumeric identifier for the resource unique to its type. | |
| Type | String | False |
Type of attribute. By default only select is supported. | |
| OrderBy | String | False |
Default sort order. Options: menu_order, name, name_num and id. Defaults to menu_order. | |
| HasArchives | Boolean | False |
Enable/Disable attribute archives. Defaults to false. |
Retrieve product categories.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, Parent, Product. All other columns are processed client side.
SELECT * FROM Categories WHERE Id = 4 SELECT * FROM Categories WHERE Slug = 'criteria' SELECT * FROM Categories WHERE Parent = 2
The following attribute is required when performing an insert: Name.
INSERT INTO Categories (Name) VALUES ('category_name')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Category name. | |
| Slug | String | False |
An alphanumeric identifier for the resource unique to its type. | |
| Parent | Long | False |
The ID for the parent of the resource. | |
| Description | String | False |
HTML description of the resource. | |
| Display | String | False |
Category archive display type. Options: default, products, subcategories and both. | |
| MenuOrder | Integer | False |
Menu order, used to custom sort the resource. | |
| Count | Integer | True |
Number of published products for the resource. | |
| ImageId | Long | False |
Image ID. | |
| ImageDateCreated | Datetime | True |
The date the image was created, in the site's timezone. | |
| ImageDateModified | Datetime | True |
The date the image was last modified, in the site's timezone. | |
| ImageSrc | String | False |
Image URL. | |
| ImageName | String | False |
Image name. | |
| ImageAlt | String | False |
Image alternative text. |
Retrieve and modify coupons.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Code. All other columns are processed client side.
SELECT * FROM Coupons WHERE Id = 4 SELECT * FROM Coupons WHERE Code = 'criteria'
To perform an update or insert using any of the aggregate columns which contain simple primitive arrays,
we can simply pass a JSON array string as the value:
UPDATE Coupons SET ProductIdsAggregate = '[14, 16, 29]' WHERE ID = 42
To introduce new metadata fields which are not present in the schema, the 'metadata' pseudocolumn can be used.
The update below will create two new metadata fields with keys 'key1' and 'key2' and set their respective values.
If any of the keys specified already exists, its value will be updated.
UPDATE Coupons SET metadata = 'key1:val1, key2:val2' WHERE ID = 58
The following attribute is required when performing an insert: Code.
INSERT INTO Coupons (Code) VALUES ('coupon_code')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the object. | |
| Code | String | False |
Coupon code. | |
| Amount | String | False |
The amount of discount. Should always be numeric, even if setting a percentage. | |
| DateCreated | Datetime | True |
The date the coupon was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the coupon was last modified, in the site's timezone. | |
| DiscountType | String | False |
Determines the type of discount that will be applied. Options: percent, fixed_cart and fixed_product. Defaults to fixed_cart. | |
| Description | String | False |
Coupon description. | |
| DateExpires | Datetime | False |
The date the coupon expires, in the site's timezone. | |
| UsageCount | Integer | True |
Number of times the coupon has been used already. | |
| IndividualUse | Boolean | False |
If true, the coupon can only be used individually. Other applied coupons will be removed from the cart. Defaults to false. | |
| ProductIdsAggregate | String | False |
List of product IDs the coupon can be used on. | |
| ExcludedProductIdsAggregate | String | False |
List of product IDs the coupon cannot be used on. | |
| UsageLimit | Integer | False |
How many times the coupon can be used in total. | |
| UsageLimitPerUser | Integer | False |
How many times the coupon can be used per customer. | |
| LimitUsageToXItems | Integer | False |
Max number of items in the cart the coupon can be applied to. | |
| FreeShipping | Boolean | False |
If true and if the free shipping method requires a coupon, this coupon will enable free shipping. Defaults to false. | |
| ProductCategoriesAggregate | String | False |
List of category IDs the coupon applies to. | |
| ExcludedProductCategoriesAggregate | String | False |
List of category IDs the coupon does not apply to. | |
| ExcludeSaleItems | Boolean | False |
If true, this coupon will not be applied to items that have sale prices. Defaults to false. | |
| MinimumAmount | String | False |
Minimum order amount that needs to be in the cart before coupon applies. | |
| MaximumAmount | String | False |
Maximum order amount allowed when using the coupon. | |
| EmailRestrictionsAggregate | String | False |
List of email addresses that can use this coupon. | |
| UsedByAggregate | String | True |
List of user IDs (or guest email addresses) that have used the coupon. | |
| Metadata | String | True |
Meta data. See Coupon - Meta data properties. |
Retrieve and modify customers.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a
SELECT query. These columns support only the = comparison, unless stated otherwise. The
available columns for this table are: Id, Email, Role. All other columns are processed client side.
SELECT * FROM Customers WHERE Id = 4 SELECT * FROM Customers WHERE Email = '[email protected]' SELECT * FROM Customers WHERE Username = 'user' AND IsPayingCustomer = true
To introduce new metadata fields which are not present in the schema, the 'MetaDataAggregate' column can be used.
The update below will create two new metadata fields with keys 'key1' and 'key2' and set their respective values.
If any of the keys specified already exists, its value will be updated.
UPDATE Customers SET MetaDataAggregate = 'key1:val1, key2:val2' WHERE ID = 58
The following attribute is required when performing an insert: Email.
INSERT INTO Customers (Email) VALUES ('[email protected]')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| DateCreated | Datetime | True |
The date the customer was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the customer was last modified, in the site's timezone. | |
| String | False |
The email address for the customer. | ||
| FirstName | String | False |
Customer first name. | |
| LastName | String | False |
Customer last name. | |
| Role | String | True |
Customer role. | |
| Username | String | False |
Customer login name. | |
| Password | String | False |
Customer password. write-only | |
| IsPayingCustomer | Bool | True |
Is the customer a paying customer? read-only | |
| AvatarUrl | String | True |
Avatar URL. | |
| MetaDataAggregate | String | False |
Meta data. | |
| BillingFirstName | String | False |
First name. | |
| BillingLastName | String | False |
Last name. | |
| BillingCompany | String | False |
Company name. | |
| BillingAddress1 | String | False |
Address line 1 | |
| BillingAddress2 | String | False |
Address line 2 | |
| BillingCity | String | False |
City name. | |
| BillingState | String | False |
ISO code or name of the state, province or district. | |
| BillingPostcode | String | False |
Postal code. | |
| BillingCountry | String | False |
ISO code of the country. | |
| BillingEmail | String | False |
Email address. | |
| BillingPhone | String | False |
Phone number. | |
| ShippingFirstName | String | False |
First name. | |
| ShippingLastName | String | False |
Last name. | |
| ShippingCompany | String | False |
Company name. | |
| ShippingAddress1 | String | False |
Address line 1 | |
| ShippingAddress2 | String | False |
Address line 2 | |
| ShippingCity | String | False |
City name. | |
| ShippingState | String | False |
ISO code or name of the state, province or district. | |
| ShippingPostcode | String | False |
Postal code. | |
| ShippingCountry | String | False |
ISO code of the country. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Add, update and view the line items for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this table is OrderId. All other columns are processed client side.
If the 'OrderId' filter is not specified, the Sync App will fetch a list of all the orders and perform a
request for each order in the list.
SELECT * FROM OrderLineItems WHERE OrderId = 13
The following attribute is required when performing an insert: OrderId.
INSERT INTO OrderLineItems (Productid, Quantity, OrderId) VALUES (28, 9, 35)
The following attribute is required when performing an update: OrderId.
UPDATE OrderLineItems SET Quantity = 12 WHERE Id = 4 AND OrderId = 35
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | False |
Item ID. | |
| Name | String | False |
Product name. | |
| ProductId | Long | False |
Product ID. | |
| VariationId | Long | False |
Variation ID, if applicable. | |
| Quantity | Integer | False |
Quantity ordered. | |
| TaxClass | String | False |
Tax class of product. | |
| Subtotal | String | False |
Line subtotal (before discounts). | |
| SubtotalTax | String | True |
Line subtotal tax (before discounts). | |
| Total | String | False |
Line total (after discounts). | |
| TotalTax | String | True |
Line total tax (after discounts). | |
| Taxes | String | True |
Line taxes. See Order - Taxes properties read-only | |
| MetaData | String | False |
Meta data. See Order - Meta data properties | |
| Sku | String | True |
Product SKU. | |
| Price | String | True |
Product price. | |
| OrderId [KEY] | String | True |
Orders.Id |
Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve and modify the notes for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: OrderId. All other columns are processed client side. If the 'OrderId' filter is not specified,
the Sync App will fetch a list of all the orders and perform a request for each order in the list.
SELECT * FROM OrderNotes WHERE OrderId = 21
The following attributes are required when performing an insert: Note, OrderId.
INSERT INTO OrderNotes (Note, OrderId) VALUES ("note_text", 144)
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | False |
Unique identifier for the resource. | |
| Author | String | True |
Order note author. | |
| DateCreated | Datetime | True |
The date the order note was created, in the site's timezone. | |
| Note | String | False |
Order note content. | |
| CustomerNote | Boolean | False |
If true, the note will be shown to customers and they will be notified. If false, the note will be for admin reference only. Defaults to false. | |
| AddedByUser | Boolean | False |
If true, this note will be attributed to the current user. If false, the note will be attributed to the system. Defaults to false. | |
| OrderId [KEY] | String | False |
Orders.Id |
Id of the order. |
Retrieve and modify order refunds.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: OrderId. All other columns are processed client side. If the 'OrderId' filter is not specified,
the Sync App will fetch a list of all the orders and perform a request for each order in the list.
SELECT * FROM OrderRefunds WHERE OrderId = 21
The following attribute is required when performing an insert: OrderId.
INSERT INTO OrderRefunds (OrderId) VALUES (33)
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | False |
Unique identifier for the resource. | |
| DateCreated | Datetime | True |
The date the order refund was created, in the site's timezone. | |
| Amount | String | False |
Refund amount. | |
| Reason | String | False |
Reason for refund. | |
| RefundedBy | Long | False |
User ID of user who created the refund. | |
| RefundedPayment | Boolean | True |
If the payment was refunded via the API. See api_refund. | |
| LineItems | String | False |
Line items data. See Order refund - Line items properties | |
| ApiRefund | Boolean | False |
When true, the payment gateway API is used to generate the refund. Defaults to true. write-only | |
| Metadata | String | True |
Meta data. See OrderRefunds - Meta data properties. | |
| OrderId [KEY] | String | True |
Orders.Id |
Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
| ApiRestock | Boolean |
When true, the selected line items are restocked. Default is true. |
Retrieve and modify orders.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, ParentId, Status, ProductId. All other columns are processed client side.
SELECT * FROM Orders WHERE Id = 4 SELECT * FROM Orders WHERE ParentId = 4 SELECT * FROM Orders WHERE Status = 'pending' AND CustomerId = 501
To perform an update or insert using any of the aggregate columns which contain object arrays, we
can use a temporary table, or pass the value as a JSON string:
INSERT INTO OrderCouponLines#TEMP (Code) VALUES ('CouponCode')
UPDATE Orders SET CouponLinesAggregate = 'OrderCouponLines#TEMP' WHERE ID = 14
To introduce new metadata fields which are not present in the schema, the 'metadata' pseudocolumn can be used.
The update below will create two new metadata fields with keys 'key1' and 'key2' and set their respective values.
If any of the keys specified already exists, its value will be updated.
UPDATE Orders SET metadata = 'key1:val1, key2:val2' WHERE ID = 58
This table does not have any required attributes when performing an insert.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| ParentId | Long | False |
Parent order ID. | |
| Number | String | True |
Order number. | |
| OrderKey | String | True |
Order key. | |
| CreatedVia | String | True |
Shows where the order was created. | |
| Version | String | True |
Version of WooCommerce which last updated the order. | |
| Status | String | False |
Order status. Options: pending, processing, on-hold, completed, cancelled, refunded, failed and trash. Defaults to pending. | |
| Currency | String | False |
Currency the order was created with, in ISO format. Options: AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTC, BTN, BWP, BYR, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GGP, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IMP, INR, IQD, IRR, IRT, ISK, JEP, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRO, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PRB, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STD, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VEF, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR and ZMW. Defaults to USD. | |
| DateCreated | Datetime | True |
The date the order was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the order was last modified, in the site's timezone. | |
| DiscountTotal | String | True |
Total discount amount for the order. | |
| DiscountTax | String | True |
Total discount tax amount for the order. | |
| ShippingTotal | String | True |
Total shipping amount for the order. | |
| ShippingTax | String | True |
Total shipping tax amount for the order. | |
| CartTax | String | True |
Sum of line item taxes only. | |
| Total | String | True |
Grand total. | |
| TotalTax | String | True |
Sum of all taxes. | |
| PricesIncludeTax | Boolean | True |
True the prices included tax during checkout. | |
| CustomerId | Long | False |
User ID who owns the order. 0 for guests. Defaults to 0. | |
| CustomerIpAddress | String | True |
Customer's IP address. | |
| CustomerUserAgent | String | True |
User agent of the customer. | |
| CustomerNote | String | False |
Note left by customer during checkout. | |
| PaymentMethod | String | False |
Payment method ID. | |
| PaymentMethodTitle | String | False |
Payment method title. | |
| TransactionId | String | False |
Unique transaction ID. | |
| DatePaid | Datetime | True |
The date the order was paid, in the site's timezone. | |
| DateCompleted | Datetime | True |
The date the order was completed, in the site's timezone. | |
| CartHash | String | True |
MD5 hash of cart items to ensure orders are not modified. | |
| LineItemsAggregate | String | False |
Line items data. See Order - Line items properties | |
| TaxLinesAggregate | String | True |
Tax lines data. | |
| ShippingLinesAggregate | String | False |
Shipping lines data. | |
| FeeLinesAggregate | String | False |
Fee lines data. | |
| CouponLinesAggregate | String | False |
Coupons line data. | |
| RefundsAggregate | String | True |
List of refunds. | |
| SetPaid | Boolean | False |
Define if the order is paid. It will set the status to processing and reduce stock items. Defaults to false. write-only | |
| BillingFirstName | String | False |
First name. | |
| BillingLastName | String | False |
Last name. | |
| BillingCompany | String | False |
Company name. | |
| BillingAddress1 | String | False |
Address line 1 | |
| BillingAddress2 | String | False |
Address line 2 | |
| BillingCity | String | False |
City name. | |
| BillingState | String | False |
ISO code or name of the state, province or district. | |
| BillingPostcode | String | False |
Postal code. | |
| BillingCountry | String | False |
Country code in ISO 3166-1 alpha-2 format. | |
| BillingEmail | String | False |
Email address. | |
| BillingPhone | String | False |
Phone number. | |
| ShippingFirstName | String | False |
First name. | |
| ShippingLastName | String | False |
Last name. | |
| ShippingCompany | String | False |
Company name. | |
| ShippingAddress1 | String | False |
Address line 1 | |
| ShippingAddress2 | String | False |
Address line 2 | |
| ShippingCity | String | False |
City name. | |
| ShippingState | String | False |
ISO code or name of the state, province or district. | |
| ShippingPostcode | String | False |
Postal code. | |
| ShippingCountry | String | False |
Country code in ISO 3166-1 alpha-2 format. | |
| Metadata | String | False |
Meta data. See Order - Meta data properties. | |
| ProductId | Long | False |
Limit result set to resources assigned to a specific product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve and modify payment gateways.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id. All other columns are processed client side.
SELECT * FROM PaymentGateways WHERE Id = 'id'
The following attribute is required when performing an update: Id.
UPDATE PaymentGateways SET Title='Credit card / debit card', Description='Enter your card details' WHERE Id = 'woocommerce_payments'
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Payment gateway ID. | |
| Title | String | False |
Payment gateway title on checkout. | |
| Description | String | False |
Payment gateway description on checkout. | |
| Order | Integer | False |
Payment gateway sort order. | |
| Enabled | Boolean | False |
Payment gateway enabled status. | |
| MethodTitle | String | True |
Payment gateway method title. | |
| MethodDescription | String | True |
Payment gateway method description. | |
| MethodSupportsAggregate | String | True |
Supported features for this payment gateway. | |
| SettingsTitleId | String | True |
A unique identifier for the setting. | |
| SettingsTitleDefault | String | True |
Default value for the setting. | |
| SettingsTitleDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsTitleLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsTitlePlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsTitleTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsTitleType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsTitleValue | String | True |
Setting value. | |
| SettingsInstructionsId | String | True |
Id value for the setting. | |
| SettingsInstructionsDefault | String | True |
Default value for the setting. | |
| SettingsInstructionsDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsInstructionsLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsInstructionsPlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsInstructionsTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsInstructionsType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsInstructionsValue | String | True |
Setting value. |
Retrieve the terms for an attribute.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, AttributeId, ProductId. All other columns are processed client side.
If the 'AttributeId' filter is not specified, the Sync App will fetch a list of all the attributes
and perform a request for each attribute in the list.
SELECT * FROM ProductAttributeTerms WHERE AttributeId = 4 SELECT * FROM ProductAttributeTerms WHERE ProductId = 41 AND Slug = 'criteria'ProductAttributeTerms.rsd
The following attributes are required when performing an insert: Name, AttributeId.
INSERT INTO ProductAttributeTerms (Name, AttributeId) VALUES ('term_name', 2)
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Term name. | |
| Slug | String | False |
An alphanumeric identifier for the resource unique to its type. | |
| Description | String | False |
HTML description of the resource. | |
| MenuOrder | Integer | False |
Menu order, used to custom sort the resource. | |
| Count | Integer | True |
Number of published products for the resource. | |
| AttributeId [KEY] | Long | False |
Id of the attribute. |
Retrieve and modify products reviews.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a
SELECT query. These columns support only the = comparison, unless stated otherwise. The
available columns for this table are: Id, Status, Reviewer, ReviewerEmail, ProductId.
All other columns are processed client side.
SELECT * FROM ProductReviews WHERE Id = 4 SELECT * FROM ProductReviews WHERE ReviewerEmail = '[email protected]'
The following attributes are required when performing an insert: ProductId, Reviewer, Review.
INSERT INTO ProductReviews (ProductId, Reviewer, ReviewerEmail, Review) VALUES (167, 'reviewer', '[email protected]', 'review_content')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| DateCreated | Datetime | True |
The date the review was created, in the site's timezone. | |
| ProductId | Long | False |
Unique identifier for the product that the review belongs to. | |
| Status | String | False |
Status of the review. Options: approved, hold, spam, unspam, trash and untrash. Defauls to approved. | |
| Reviewer | String | False |
Reviewer name. | |
| ReviewerEmail | String | False |
Reviewer email. | |
| Review | String | False |
The content of the review. | |
| Rating | Integer | False |
Review rating (0 to 5). | |
| Verified | Boolean | False |
Shows if the reviewer bought the product or not. |
Retrieve and modify products.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, Type, Status, Sku, Price, OnSale, TaxClass, StockStatus, ShippingClass, ParentId.
The price filter can be used with the <, > conditions and may be used twice to specify a range. All
other columns are processed client side.
SELECT * FROM Products WHERE Id = 4 SELECT * FROM Products WHERE Slug = 'criteria' AND OnSale = true SELECT * FROM Products WHERE Price < 14.99 AND Price > 11.99
To perform an update or insert using any of the aggregate columns which contain simple primitive arrays, we can simply pass a JSON array string as the value:
UPDATE Products SET Name = 'ProductName', RelatedIdsAggregate = '[14, 16, 29]' WHERE ID = 42
To perform an update or insert using any of the aggregate columns which contain object arrays, we can use a temporary table, or pass the value as a JSON string:
INSERT INTO ProductCategories#TEMP (Name) VALUES ('Category')
INSERT INTO ProductCategories#TEMP (Name) VALUES ('Category2')
UPDATE Products SET CategoriesAggregate = 'ProductCategories#TEMP' WHERE ID = 167
To introduce new metadata fields which are not present in the schema, the 'metadata' pseudocolumn can be used.
The update below will create two new metadata fields with keys 'key1' and 'key2' and set their respective values.
If any of the keys specified already exists, its value will be updated.
UPDATE Products SET metadata = 'key1:val1, key2:val2' WHERE ID = 58
This table does not have any required attributes when performing an insert.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Product name. | |
| Slug | String | False |
Product slug. | |
| Permalink | String | True |
Product URL. | |
| DateCreated | Datetime | True |
The date the product was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the product was last modified, in the site's timezone. | |
| Type | String | False |
Product type. Options: simple, grouped, external and variable. Defaults to simple. | |
| Status | String | False |
Product status (post status). Options: draft, pending, private and publish. Defaults to publish. | |
| Featured | Boolean | False |
Featured product. Defaults to false. | |
| CatalogVisibility | String | False |
Catalog visibility. Options: visible, catalog, search and hidden. Defaults to visible. | |
| Description | String | False |
Product description. | |
| ShortDescription | String | False |
Product short description. | |
| Sku | String | False |
Unique identifier. | |
| Price | String | True |
Current product price. | |
| RegularPrice | String | False |
Product regular price. | |
| SalePrice | String | False |
Product sale price. | |
| DateOnSaleFrom | Datetime | False |
Start date of sale price, in the site's timezone. | |
| DateOnSaleTo | Datetime | False |
End date of sale price, in the site's timezone. | |
| PriceHtml | String | True |
Price formatted in HTML. | |
| OnSale | Boolean | True |
Shows if the product is on sale. | |
| Purchasable | Boolean | True |
Shows if the product can be bought. | |
| TotalSales | Integer | True |
Amount of sales. | |
| Virtual | Boolean | False |
If the product is virtual. Defaults to false. | |
| Downloadable | Boolean | False |
If the product is downloadable. Defaults to false. | |
| Downloads | String | False |
List of downloadable files. | |
| DownloadLimit | Integer | False |
Number of times downloadable files can be downloaded after purchase. Defaults to -1. | |
| DownloadExpiry | Integer | False |
Number of days until access to downloadable files expires. Defaults to -1. | |
| ExternalUrl | String | False |
Product external URL. Only for external products. | |
| ButtonText | String | False |
Product external button text. Only for external products. | |
| TaxStatus | String | False |
Tax status. Options: taxable, shipping and none. Defaults to taxable. | |
| TaxClass | String | False |
Tax class. | |
| ManageStock | Boolean | False |
Stock management at product level. Defaults to false. | |
| StockQuantity | Integer | False |
Stock quantity. | |
| StockStatus | String | False |
Controls the stock status of the product. Options: instock, outofstock, onbackorder. Defaults to instock. | |
| Backorders | String | False |
If managing stock, this controls if backorders are allowed. Options: no, notify and yes. Defaults to no. | |
| BackordersAllowed | Boolean | True |
Shows if backorders are allowed. | |
| Backordered | Boolean | True |
Shows if the product is on backordered. | |
| SoldIndividually | Boolean | False |
Allow one item to be bought in a single order. Defaults to false. | |
| Weight | String | False |
Product weight. | |
| ShippingRequired | Boolean | True |
Shows if the product need to be shipped. | |
| ShippingTaxable | Boolean | True |
Shows whether or not the product shipping is taxable. | |
| ShippingClass | String | False |
Shipping class slug. | |
| ShippingClassId | Long | True |
Shipping class ID. | |
| ReviewsAllowed | Boolean | False |
Allow reviews. Defaults to true. | |
| AverageRating | String | True |
Reviews average rating. | |
| RatingCount | Integer | True |
Amount of reviews that the product have. | |
| RelatedIdsAggregate | String | True |
List of related products IDs. | |
| UpsellIdsAggregate | String | False |
List of up-sell products IDs. | |
| CrossSellIdsAggregate | String | False |
List of cross-sell products IDs. | |
| ParentId | Long | False |
Product parent ID. | |
| PurchaseNote | String | False |
Optional note to send the customer after purchase. | |
| CategoriesAggregate | String | False |
List of categories. | |
| TagsAggregate | String | False |
List of tags. | |
| ImagesAggregate | String | False |
List of images. | |
| AttributesAggregate | String | False |
List of attributes. | |
| DefaultAttributesAggregate | String | False |
Defaults variation attributes. | |
| VariationsAggregate | String | True |
List of variations IDs. | |
| GroupedProductsAggregate | String | False |
List of grouped products ID. | |
| MenuOrder | Integer | False |
Menu order, used to custom sort products. | |
| MetaData | String | False |
Meta data. | |
| DimensionsLength | String | False |
Product length. | |
| DimensionsWidth | String | False |
Product width. | |
| DimensionsHeight | String | False |
Product height. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve and modify product shipping classes.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, ProductId. All other columns are processed client side.
SELECT * FROM ProductShippingClasses WHERE Id = 4 SELECT * FROM ProductShippingClasses WHERE ProductId = 16
The following attribute is required when performing an insert: Name.
INSERT INTO ProductShippingClasses (Name) VALUES ('class_name')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Shipping class name. | |
| Slug | String | False |
An alphanumeric identifier for the resource unique to its type. | |
| Description | String | False |
HTML description of the resource. | |
| Count | Integer | True |
Number of published products for the resource. | |
| ProductId | Long | False |
Limit result set to resources assigned to a specific product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve and modify product tags.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, Product, HideEmpty. All other columns are processed client side.
SELECT * FROM ProductTags WHERE Id = 4 SELECT * FROM ProductTags WHERE Slug = 'criteria' SELECT * FROM ProductTags WHERE ProductId = 16
The following attribute is required when performing an insert: Name.
INSERT INTO ProductTags (Name) VALUES ('tag_name')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Tag name. | |
| Slug | String | False |
An alphanumeric identifier for the resource unique to its type. | |
| Description | String | False |
HTML description of the resource. | |
| Count | Integer | True |
Number of published products for the resource. | |
| ProductId | Long | False |
Limit result set to resources assigned to a specific product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve and modify product variations.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id, Sku, Price, OnSale, Status, TaxClass, StockStatus, ProductId, ParentId. The price filter
can be used with the <, > conditions and may be used twice to specify a range. All other columns are processed client side.
SELECT * FROM ProductVariations WHERE Id = 4 SELECT * FROM ProductVariations WHERE Price < 14.99 AND Price > 11.99 AND OnSale = true
To introduce new metadata fields which are not present in the schema, the 'metadata' pseudocolumn can be used.
The update below will create two new metadata fields with keys 'key1' and 'key2' and set their respective values.
If any of the keys specified already exists, its value will be updated.
UPDATE ProductVariations SET metadata = 'key1:val1, key2:val2' WHERE ID = 58 AND ProductID = 80
To update Stock information, you must set ManageStock to true. For example:
UPDATE ProductVariations SET StockQuantity = 6, ManageStock = true WHERE ID = 58 AND ProductID = 80
The following attribute is required when performing an insert: ProductId.
INSERT INTO ProductVariations (ProductId) VALUES (167)
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| DateCreated | Datetime | True |
The date the variation was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the variation was last modified, in the site's timezone. | |
| Description | String | False |
Variation description. | |
| Permalink | String | True |
Variation URL. | |
| Sku | String | False |
Unique identifier. | |
| Price | String | True |
Current variation price. | |
| RegularPrice | String | False |
Variation regular price. | |
| SalePrice | String | False |
Variation sale price. | |
| DateOnSaleFrom | Datetime | False |
Start date of sale price, in the site's timezone. | |
| DateOnSaleTo | Datetime | False |
End date of sale price, in the site's timezone. | |
| OnSale | Boolean | True |
Shows if the variation is on sale. | |
| Status | String | False |
Variation status. Options: draft, pending, private and publish. Defaults to publish. | |
| Purchasable | Boolean | True |
Shows if the variation can be bought. | |
| Virtual | Boolean | False |
If the variation is virtual. Defaults to false. | |
| Downloadable | Boolean | False |
If the variation is downloadable. Defaults to false. | |
| DownloadsAggregate | String | False |
List of downloadable files. See Product variation - Downloads properties | |
| DownloadLimit | Integer | False |
Number of times downloadable files can be downloaded after purchase. Defaults to -1. | |
| DownloadExpiry | Integer | False |
Number of days until access to downloadable files expires. Defaults to -1. | |
| TaxStatus | String | False |
Tax status. Options: taxable, shipping and none. Defaults to taxable. | |
| TaxClass | String | False |
Tax class. | |
| ManageStock | String | False |
Stock management at variation level. Defaults to false. If the stock is managed by product and not variaation then the value is parent. | |
| StockQuantity | Integer | False |
Stock quantity. | |
| StockStatus | String | False |
Controls the stock status of the product. Options: instock, outofstock, onbackorder. Defaults to instock. | |
| Backorders | String | False |
If managing stock, this controls if backorders are allowed. Options: no, notify and yes. Defaults to no. | |
| BackordersAllowed | Boolean | True |
Shows if backorders are allowed. | |
| Backordered | Boolean | True |
Shows if the variation is on backordered. | |
| Weight | String | False |
Variation weight. | |
| ShippingClass | String | False |
Shipping class slug. | |
| ShippingClassId | String | True |
Shipping class ID. | |
| AttributesAggregate | String | False |
List of attributes. See Product variation - Attributes properties | |
| MenuOrder | Integer | False |
Menu order, used to custom sort products. | |
| MetaData | String | False |
Meta data. See Product variation - Meta data properties | |
| DimensionsLength | String | False |
Variation length. | |
| DimensionsWidth | String | False |
Variation width. | |
| DimensionsHeight | String | False |
Variation height. | |
| ImageId | Long | False |
Image ID. | |
| ImageDateCreated | Datetime | True |
The date the image was created, in the site's timezone. | |
| ImageDateModified | Datetime | True |
The date the image was last modified, in the site's timezone. | |
| ImageSrc | String | False |
Image URL. | |
| ImageName | String | False |
Image name. | |
| ImageAlt | String | False |
Image alternative text. | |
| ProductId [KEY] | Long | False |
Products.Id |
Id of the product. |
| ParentId | Long | False |
The id of the parent, filtered server side. |
View and manage settings options.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, SettingId. All other columns are processed client side. If the 'SettingId' filter is
not specified, the Sync App will fetch a list of all the settings and perform a request for each setting in the list.
SELECT * FROM SettingOptions WHERE Id = 'woocommerce_excluded_report_order_statuses'
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
A unique identifier for the setting. | |
| SettingId [KEY] | String | False |
Id of the setting group. | |
| Label | String | True |
A human readable label for the setting used in interfaces. | |
| Description | String | True |
A human readable description for the setting used in interfaces. | |
| Value | String | False |
Setting value. | |
| Default | String | True |
Default value for the setting. | |
| Tip | String | True |
Additional help text shown to the user about the setting. | |
| Placeholder | String | True |
Placeholder text to be displayed in text inputs. | |
| Type | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| GroupId | String | True |
An identifier for the group this setting belongs to. | |
| Options | String | True |
Array of options (key value pairs) for inputs such as select, multiselect, and radio buttons. |
Retrieve and modify shipping zone methods.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns
support only the = comparison, unless stated otherwise. The available columns for this table are: InstanceId, ZoneId.
All other columns are processed client side. If the 'ZoneId' filter is not specified, the Sync App will fetch a list
of all the zones and perform a request for each zone in the list.
SELECT * FROM ShippingZoneMethods WHERE InstanceId = 4 AND ZoneId = 11
The following attributes are required when performing an insert: MethodId, ZoneId.
INSERT INTO ShippingZoneMethods (MethodId, ZoneId) VALUES ('flat_rate', 1)
| Name | Type | ReadOnly | References | Description |
| InstanceId [KEY] | Long | False |
Shipping method instance ID. | |
| Enabled | Boolean | False |
Shipping method enabled status. | |
| MethodDescription | String | False |
hipping method description. | |
| MethodId | String | False |
Shipping method ID. | |
| MethodTitle | String | False |
Shipping method title. | |
| Order | Integer | False |
Shipping method sort order. | |
| Title | String | False |
Shipping method customer facing title. | |
| SettingsTitleId | String | True |
A unique identifier for the setting. | |
| SettingsTitleLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsTitleDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsTitleType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsTitleValue | String | False |
Setting value. | |
| SettingsTitleDefault | String | True |
Default value for the setting. | |
| SettingsTitleTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsTitlePlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsTaxStatusId | String | True |
A unique identifier for the setting. | |
| SettingsTaxStatusLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsTaxStatusDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsTaxStatusType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsTaxStatusValue | String | False |
Setting value. | |
| SettingsTaxStatusDefault | String | True |
Default value for the setting. | |
| SettingsTaxStatusTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsTaxStatusPlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsTaxStatusOptions | String | True |
Options under Tax Status. | |
| SettingsCostId | String | True |
A unique identifier for the setting. | |
| SettingsCostLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsCostDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsCostType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsCostValue | String | False |
Setting value. | |
| SettingsCostDefault | String | True |
Default value for the setting. | |
| SettingsCostTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsCostPlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsTypeId | String | True |
A unique identifier for the setting. | |
| SettingsTypeLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsTypeDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsTypeType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsTypeValue | String | False |
Setting value. | |
| SettingsTypeDefault | String | True |
Default value for the setting. | |
| SettingsTypeTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsTypePlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsTypeOptions | String | True |
Setting Type Options. | |
| SettingsClassCostsId | String | True |
A unique identifier for the setting. | |
| SettingsClassCostsLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostsDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostsType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostsDefault | String | True |
Default value for the setting. | |
| SettingsClassCostsPlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostsTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostsValue | String | True |
Setting value. | |
| SettingsClassCostId29 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel29 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription29 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType29 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault29 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder29 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip29 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue29 | String | True |
Setting value. | |
| SettingsClassCostId30 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel30 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription30 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType30 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault30 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder30 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip30 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue30 | String | True |
Setting value. | |
| SettingsClassCostId31 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel31 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription31 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType31 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault31 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder31 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip31 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue31 | String | True |
Setting value. | |
| SettingsClassCostId32 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel32 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription32 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType32 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault32 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder32 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip32 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue32 | String | True |
Setting value. | |
| SettingsClassCostId33 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel33 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription33 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType33 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault33 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder33 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip33 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue33 | String | True |
Setting value. | |
| SettingsClassCostId34 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel34 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription34 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType34 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault34 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder34 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip34 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue34 | String | True |
Setting value. | |
| SettingsClassCostId54 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel54 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription54 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType54 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault54 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder54 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip54 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue54 | String | True |
Setting value. | |
| SettingsClassCostId55 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel55 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription55 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType55 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault55 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder55 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip55 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue55 | String | True |
Setting value. | |
| SettingsClassCostId56 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel56 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription56 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType56 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault56 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder56 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip56 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue56 | String | True |
Setting value. | |
| SettingsClassCostId57 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel57 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription57 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType57 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault57 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder57 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip57 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue57 | String | True |
Setting value. | |
| SettingsClassCostId58 | String | True |
A unique identifier for the setting. | |
| SettingsClassCostLabel58 | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsClassCostDescription58 | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsClassCostType58 | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsClassCostDefault58 | String | True |
Default value for the setting. | |
| SettingsClassCostPlaceholder58 | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsClassCostTip58 | String | True |
Additional help text shown to the user about the setting. | |
| SettingsClassCostValue58 | String | True |
Setting value. | |
| SettingsNoCostId | String | True |
A unique identifier for the setting. | |
| SettingsNoCostLabel | String | True |
A human readable label for the setting used in interfaces. | |
| SettingsNoCostDescription | String | True |
A human readable description for the setting used in interfaces. | |
| SettingsNoCostType | String | True |
Type of setting. Options: text, email, number, color, password, textarea, select, multiselect, radio, image_width and checkbox. | |
| SettingsNoCostDefault | String | True |
Default value for the setting. | |
| SettingsNoCostPlaceholder | String | True |
Placeholder text to be displayed in text inputs. | |
| SettingsNoCostTip | String | True |
Additional help text shown to the user about the setting. | |
| SettingsNoCostValue | String | True |
Setting value. | |
| ZoneId [KEY] | Long | False |
Id of the shipping zone. |
Retrieve and modify shipping zones.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id. All other columns are processed client side.
SELECT * FROM ShippingZones WHERE Id = 13
The following attribute is required when performing an insert: Name.
INSERT INTO ShippingZones (Name) VALUES ('zone_name')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
Shipping zone name. | |
| Order | Integer | False |
Shipping zone order. |
Retrieve and modify tax classes.
The Sync App will process all filters client side.
The following attribute is required when performing an insert: Name.
INSERT INTO TaxClasses (Name) VALUES ('tax_class_name')
| Name | Type | ReadOnly | References | Description |
| Slug [KEY] | String | True |
Unique identifier for the resource. | |
| Name | String | False |
Tax class name. required |
Retrieve and modify tax rates.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Class. All other columns are processed client side.
SELECT * FROM TaxRates WHERE Id = 4
This table does not have any required attributes when performing an insert.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Country | String | False |
Country ISO 3166 code. See ISO 3166 Codes (Countries) for more details | |
| State | String | False |
State code. | |
| Postcode | String | False |
Postcode/ZIP. | |
| City | String | False |
City name. | |
| Rate | String | False |
Tax rate. | |
| Name | String | False |
Tax rate name. | |
| Priority | Integer | False |
Tax priority. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate. Defaults to 1. | |
| Compound | Boolean | False |
Whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates. Defaults to false. | |
| Shipping | Boolean | False |
Whether or not this tax rate also gets applied to shipping. Defaults to true. | |
| Order | Integer | False |
Indicates the order that will appear in queries. | |
| Class | String | False |
Tax class. Defaults to standard. | |
| Postcodes | String | False |
Postcodes/ZIP. | |
| Cities | String | False |
City names. |
Retrieve and modify webhooks.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Status. All other columns are processed client side.
SELECT * FROM Webhooks WHERE Id = 4
The following attributes are required when performing an insert: Topic, DeliveryUrl.
INSERT INTO Webhooks (Topic, DeliveryUrl) VALUES ('order.updated', 'http://url.com')
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
Unique identifier for the resource. | |
| Name | String | False |
A friendly name for the webhook. | |
| Status | String | False |
Webhook status. Options: active, paused and disabled. Defaults to active. | |
| Topic | String | False |
Webhook topic. | |
| Resource | String | True |
Webhook resource. | |
| Event | String | True |
Webhook event. | |
| HooksAggregate | String | True |
WooCommerce action names associated with the webhook. | |
| DeliveryUrl | String | False |
The URL where the webhook payload is delivered. | |
| Secret | String | False |
Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will Defaults to a MD5 hash from the current user's ID | |
| DateCreated | Datetime | True |
The date the webhook was created, in the site's timezone. | |
| DateModified | Datetime | True |
The date the webhook was last modified, in the site's timezone. |
ビューは、データを示すという点でテーブルに似ていますが、ビューは読み取り専用です。
クエリは、ビューに対して通常のテーブルと同様に実行することができます。
| Name | Description |
| Continents | Retrieve continents. |
| Countries | Retrieve countries. |
| Currencies | Retrieve available currencies. |
| CustomerMetadata | Retrieve the metadata for each customer. |
| OrderCouponLines | Retrieve the coupon lines for an order. |
| OrderFeeLines | Retrieve the fee lines for an order. |
| OrderRefundLineItems | Retrieve the line items for a refund. |
| OrderShippingLines | Retrieve the shipping lines for an order. |
| OrderTaxLines | Retrieve the tax lines for an order. |
| ProductAttributes | Retrieve product attributes. |
| ProductCategories | Retrieve product categories. |
| ProductImages | Retrieve images for a product. |
| SalesReport | Executes a Sales report. |
| SettingGroups | Retrieve settings groups. |
| ShippingLocations | Retrieve shipping zone locations. |
| ShippingMethods | Retrieve shipping methods. |
| States | Retrieve shipping states. |
| SystemStatus | Retrieve system status items. |
| SystemStatusPages | Retrieve and system status items. |
| SystemStatusTools | Retrieve system status tools. |
| TopSellersReports | Execute a top sellers report. |
| TotalsReport | Execute a totals report. |
Retrieve continents.
The Sync App will process all filters client side.
| Name | Type | References | Description |
| Code | String | 2 character continent code. | |
| Name | String | Full name of continent. | |
| CountriesAggregate | String | List of countries on this continent. See Continents - Countries properties read-only |
Retrieve countries.
The Sync App will process all filters client side.
| Name | Type | References | Description |
| Code | String | ISO3166 alpha-2 country code. | |
| Name | String | Full name of country. | |
| StatesAggregate | String | List of states in this country. See Countries - States properties read-only |
Retrieve available currencies.
The Sync App will process all filters client side.
| Name | Type | References | Description |
| Code | String | ISO4217 currency code. | |
| Name | String | Full name of currency. | |
| Symbol | String | Currency symbol. |
Retrieve the metadata for each customer.
| Name | Type | References | Description |
| Id [KEY] | String | Metadata ID. | |
| Key | String | Metadata key. | |
| Value | String | Metadata value. | |
| CustomerId | String |
Customers.Id | Id of the customer. |
Retrieve the coupon lines for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: OrderId. All other columns are processed client side.
SELECT * FROM OrderCouponLines WHERE OrderId = 144
| Name | Type | References | Description |
| Id [KEY] | Long | Item ID. | |
| Code | String | Coupon code. | |
| Discount | String | Discount total. | |
| DiscountTax | String | Discount total tax. | |
| MetaData | String | Meta data. See Order - Meta data properties | |
| OrderId [KEY] | String |
Orders.Id | Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve the fee lines for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns support
only the = comparison, unless stated otherwise. The available column for this table is: OrderId. All other columns are processed client side.
If the 'OrderId' filter is not specified, the Sync App will fetch a list of all the orders and perform a request for each order in the list.
SELECT * FROM OrderFeeLines WHERE OrderId = 21
| Name | Type | References | Description |
| Id [KEY] | Long | Item ID. | |
| Name | String | Fee name. | |
| TaxClass | String | Tax class of fee. | |
| TaxStatus | String | Tax status of fee. Options: taxable and none. | |
| Total | String | Line total (after discounts). | |
| TotalTax | String | Line total tax (after discounts). | |
| Taxes | String | Line taxes. See Order - Taxes properties read-only | |
| MetaData | String | Meta data. See Order - Meta data properties | |
| OrderId [KEY] | String |
Orders.Id | Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve the line items for a refund.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: OrderId, RefundId. All other columns are processed client side. If the 'OrderId' filter is
not specified, the Sync App will fetch a list of all the orders and perform a request for each order in the list.
The above behaviour will happen apply also for refunds, if 'RefundId' is not specified.
SELECT * FROM OrderRefundLineItems SELECT * FROM OrderRefundLineItems WHERE OrderId = 16 SELECT * FROM OrderRefundLineItems WHERE RefundId = 6 SELECT * FROM OrderRefundLineItems where OrderId IN (12,13) and RefundId IN(5,6)
| Name | Type | References | Description |
| Id | Long | Item ID. | |
| Name | String | Product name. | |
| ProductId | Long | Product ID. | |
| VariationId | Long | Variation ID, if applicable. | |
| Quantity | Integer | Quantity ordered. | |
| TaxClass | Integer | Tax class of product. | |
| Subtotal | String | Line subtotal (before discounts). | |
| SubtotalTax | String | Line subtotal tax (before discounts). | |
| Total | String | Line total (after discounts). | |
| TotalTax | String | Line total tax (after discounts). | |
| TaxesAggregate | String | Line taxes. See Order refund line item - Taxes properties read-only | |
| MetaDataAggregate | String | Meta data. See Order refund - Meta data properties | |
| Sku | String | Product SKU. | |
| Price | String | Product price. | |
| OrderId | String |
Orders.Id | Id of the order. |
| RefundId | String |
OrderRefunds.Id | Id of the refund. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. | |
| RefundTotal | String | The amount to refund for this line item, excluding taxes. |
Retrieve the shipping lines for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: OrderId. All other columns are processed client side. If the 'OrderId' filter is not specified,
the Sync App will fetch a list of all the orders and perform a request for each order in the list.
SELECT * FROM OrderShippingLines WHERE OrderId = 21
| Name | Type | References | Description |
| Id [KEY] | Long | Item ID. | |
| MethodTitle | String | Shipping method name. | |
| MethodId | String | Shipping method ID. | |
| Total | String | Line total (after discounts). | |
| TotalTax | String | Line total tax (after discounts). | |
| Taxes | String | Line taxes. See Order - Taxes properties read-only | |
| MetaData | String | Meta data. See Order - Meta data properties | |
| OrderId [KEY] | Long |
Orders.Id | Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve the tax lines for an order.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: OrderId. All other columns are processed client side. If the 'OrderId' filter is not specified,
the Sync App will fetch a list of all the orders and perform a request for each order in the list.
SELECT * FROM OrderTaxLines WHERE OrderId = 12
| Name | Type | References | Description |
| Id [KEY] | Long | Item ID. | |
| RateCode | String | Tax rate code. | |
| RateId | String | Tax rate ID. | |
| Label | String | Tax rate label. | |
| Compound | Boolean | Show if is a compound tax rate. | |
| TaxTotal | String | Tax total (not including shipping taxes). | |
| ShippingTaxTotal | String | Shipping tax total. | |
| MetaData | String | Meta data. See Order - Meta data properties | |
| OrderId [KEY] | Long |
Orders.Id | Id of the order. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve product attributes.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: ProductId. All other columns are processed client side. If the 'ProductId' filter is not
specified, the Sync App will fetch a list of all the products and perform a request for each product in the list.
SELECT * FROM ProductAttributes WHERE ProductId = 4
| Name | Type | References | Description |
| Id [KEY] | Long | Attribute ID. | |
| Name | String | Attribute name. | |
| Slug | String | An alphanumeric identifier for the resource unique to its type. | |
| Type | String | Type of attribute. By default only select is supported. | |
| OrderBy | String | Default sort order. Options: menu_order, name, name_num and id. Defaults to menu_order. | |
| HasArchives | Boolean | Enable/Disable attribute archives. Defaults to false. | |
| ProductId [KEY] | Long |
Products.Id | Id of the product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve product categories.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, Slug, ProductId. All other columns are processed client side.
If the 'ProductId' filter is not specified, the Sync App will fetch a list of all the products and
perform a request for each product in the list.
SELECT * FROM ProductCategories WHERE Id = 4 SELECT * FROM ProductCategories WHERE Slug = 'criteria'
| Name | Type | References | Description |
| Id [KEY] | Long | Unique identifier for the resource. | |
| Name | String | Category name. | |
| Slug | String | An alphanumeric identifier for the resource unique to its type. | |
| ProductId [KEY] | Long |
Products.Id | Id of the product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Retrieve images for a product.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Id, DateCreated, DateModified, Src, Name, Alt, ProductId. All other columns are processed
client side. If the 'ProductId' filter is not specified, the Sync App will fetch a list of all the
products and perform a request for each product in the list.
SELECT * FROM ProductImages WHERE Id = 4 SELECT * FROM ProductImages WHERE ProductId = 6
| Name | Type | References | Description |
| Id [KEY] | Long | Image ID. | |
| DateCreated | Datetime | The date the image was created, in the site's timezone. | |
| DateModified | Datetime | The date the image was last modified, in the site's timezone. | |
| Src | String | Image URL. | |
| Name | String | Image name. | |
| Alt | String | Image alternative text. | |
| ProductId [KEY] | Long |
Products.Id | Id of the product. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| ReferenceNumber | String | This column will be used in Bulk operations to get specific values from the Temp tables. |
Executes a Sales report.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: Period, StartDate, EndDate. All other columns are processed client side.
SELECT * FROM SalesReport WHERE Period = 'week' AND StartDate = '01/01/2019'
| Name | Type | References | Description |
| TotalSales | String | Gross sales in the period. | |
| NetSales | String | Net sales in the period. | |
| AverageSales | String | Average net daily sales. | |
| TotalOrders | Integer | Total of orders placed. | |
| TotalItems | Integer | Total of items purchased. | |
| TotalTax | String | Total charged for taxes. | |
| TotalShipping | String | Total charged for shipping. | |
| TotalRefunds | Integer | Total of refunded orders. | |
| TotalDiscount | Integer | Total of coupons used. | |
| TotalsGroupedBy | String | Group type. | |
| TotalsAggregate | String | Totals. | |
| Period | String | Report period. Defaults to week. Options: week, month, last_month and year. | |
| StartDate | Date | Return sales for a specific start date, the date need to be in the YYYY-MM-DD format. | |
| EndDate | Date | Return sales for a specific end date, the date need to be in the YYYY-MM-DD format. |
Retrieve settings groups.
The Sync App will process all filters client side.
| Name | Type | References | Description |
| Id [KEY] | String | A unique identifier that can be used to link settings together. | |
| Label | String | A human readable label for the setting used in interfaces. | |
| Description | String | A human readable description for the setting used in interfaces. | |
| ParentId | String | ID of parent grouping. | |
| SubGroups | String | ID for settings sub groups. |
Retrieve shipping zone locations.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: ZoneId. All other columns are processed client side. If the 'ZoneId' filter is not specified,
the Sync App will fetch a list of all the zones and perform a request for each zone in the list.
SELECT * FROM ShippingLocations WHERE ZoneId = 13
| Name | Type | References | Description |
| Code | String | Shipping zone location code. | |
| Type | String | Shipping zone location type. Options: postcode, state, country and continent. Defaults to country. | |
| ZoneId | Long | Id of the shipping zone. |
Retrieve shipping methods.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id. All other columns are processed client side.
SELECT * FROM ShippingMethods WHERE Id = 'flat_rate'
| Name | Type | References | Description |
| Id [KEY] | String | Method ID. | |
| Title | String | Shipping method title. | |
| Description | String | Shipping method description. |
Retrieve shipping states.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Country. All other columns are processed client side. If the 'Country' filter is not specified,
the Sync App will fetch a list of all the countries and perform a request for each country in the list.
SELECT * FROM States WHERE Country = 'Germany'
| Name | Type | References | Description |
| Country | String | State code. | |
| Code | String | State code. | |
| Name | String | Full name of the state. |
Retrieve system status items.
This table represents a singleton entity.
| Name | Type | References | Description |
| ActivePluginsAggregate | String | Active plugins. | |
| PagesAggregate | String | WooCommerce pages. | |
| EnvironmentHomeUrl | String | Home URL. | |
| EnvironmentSiteUrl | String | Site URL. | |
| EnvironmentWcVersion | String | WooCommerce version. | |
| EnvironmentLogDirectory | String | Log directory. | |
| EnvironmentLogDirectoryWritable | Boolean | Is log directory writable? read-only | |
| EnvironmentWpVersion | String | WordPress version. | |
| EnvironmentWpMultisite | Boolean | Is WordPress multisite? read-only | |
| EnvironmentWpMemoryLimit | Integer | WordPress memory limit. | |
| EnvironmentWpDebugMode | Boolean | Is WordPress debug mode active? read-only | |
| EnvironmentWpCron | Boolean | Are WordPress cron jobs enabled? read-only | |
| EnvironmentLanguage | String | WordPress language. | |
| EnvironmentServerInfo | String | Server info. | |
| EnvironmentPhpVersion | String | PHP version. | |
| EnvironmentPhpPostMaxSize | Integer | PHP post max size. | |
| EnvironmentPhpMaxExecutionTime | Integer | PHP max execution time. | |
| EnvironmentPhpMaxInputVars | Integer | PHP max input vars. | |
| EnvironmentCurlVersion | String | cURL version. | |
| EnvironmentSuhosinInstalled | Boolean | Is SUHOSIN installed? read-only | |
| EnvironmentMaxUploadSize | Integer | Max upload size. | |
| EnvironmentMysqlVersion | String | MySQL version. | |
| EnvironmentDefaultTimezone | String | Default timezone. | |
| EnvironmentFsockopenOrCurlEnabled | Boolean | Is fsockopen/cURL enabled? read-only | |
| EnvironmentSoapclientEnabled | Boolean | Is SoapClient class enabled? read-only | |
| EnvironmentDomdocumentEnabled | Boolean | Is DomDocument class enabled? read-only | |
| EnvironmentGzipEnabled | Boolean | Is GZip enabled? read-only | |
| EnvironmentMbstringEnabled | Boolean | Is mbstring enabled? read-only | |
| EnvironmentRemotePostSuccessful | Boolean | Remote POST successful? read-only | |
| EnvironmentRemotePostResponse | String | Remote POST response. | |
| EnvironmentRemoteGetSuccessful | Boolean | Remote GET successful? read-only | |
| EnvironmentRemoteGetResponse | String | Remote GET response. | |
| DatabaseWcDatabaseVersion | String | WC database version. | |
| DatabasePrefix | String | Database prefix. | |
| DatabaseMaxmindGeoipDatabase | String | MaxMind GeoIP database. | |
| DatabaseTablesAggregate | String | Database tables. | |
| ThemeName | String | Theme name. | |
| ThemeVersion | String | Theme version. | |
| ThemeVersionLatest | String | Latest version of theme. | |
| ThemeAuthorUrl | String | Theme author URL. | |
| ThemeIsChildTheme | Boolean | Is this theme a child theme? read-only | |
| ThemeHasWoocommerceSupport | Boolean | Does the theme declare WooCommerce support? read-only | |
| ThemeHasWoocommerceFile | Boolean | Does the theme have a woocommerce.php file? read-only | |
| ThemeHasOutdatedTemplates | Boolean | Does this theme have outdated templates? read-only | |
| ThemeOverridesAggregate | String | Template overrides. | |
| ThemeParentName | String | Parent theme name. | |
| ThemeParentVersion | String | Parent theme version. | |
| ThemeParentAuthorUrl | String | Parent theme author URL. | |
| SettingsApiEnabled | Boolean | REST API enabled? read-only | |
| SettingsForceSsl | Boolean | SSL forced? read-only | |
| SettingsCurrency | String | Currency. | |
| SettingsCurrencySymbol | String | Currency symbol. | |
| SettingsCurrencyPosition | String | Currency position. | |
| SettingsThousandSeparator | String | Thousand separator. | |
| SettingsDecimalSeparator | String | Decimal separator. | |
| SettingsNumberOfDecimals | Integer | Number of decimals. | |
| SettingsGeolocationEnabled | Boolean | Geolocation enabled? read-only | |
| SettingsTaxonomiesAggregate | String | Taxonomy terms for product/order statuses. | |
| SecuritySecureConnection | Boolean | Is the connection to your store secure? read-only | |
| SecurityHideErrors | Boolean | Hide errors from visitors? read-only |
Retrieve and system status items.
The Sync App will process all filters client side.
| Name | Type | References | Description |
| PageName | String | Name of the page. | |
| PageId | String | Id of the page. | |
| PageSet | String | Whether the page is set. | |
| PageExists | String | Whether the page exists. | |
| PageVisible | String | Whether the page is visible. | |
| Shortcode | String | Page short code. | |
| ShortcodeRequired | String | Whether shortcode is required. | |
| ShortcodePresent | String | Whether shortcode is present. |
Retrieve system status tools.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available column for this
table is: Id. All other columns are processed client side.
SELECT * FROM SystemStatusTools WHERE Id = 'install_pages'
| Name | Type | References | Description |
| Id [KEY] | String | A unique identifier for the tool. | |
| Name | String | Tool name. | |
| Action | String | What running the tool will do. | |
| Description | String | Tool description. | |
| Success | Boolean | Did the tool run successfully? | |
| Message | String | Tool return message. | |
| Confirm | Boolean | Confirm execution of the tool. Defaults to false. write-only |
Execute a top sellers report.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for
this table are: Title, ProductId, Quantity, StartDate, EnDDate. All other columns are processed client side.
SELECT * FROM TopSellersReports WHERE Title = 'criteria' SELECT * FROM TopSellersReports WHERE ProductId = 4
| Name | Type | References | Description |
| Title | String | Product title. | |
| ProductId | Long | Product ID. | |
| Quantity | Integer | Total number of purchases. | |
| StartDate | Date | Return the report for a specific start date. | |
| EndDate | Date | Return the report for a specific end date. |
Execute a totals report.
WooCommerce allows only a small subset of columns to be used in the WHERE clause of a SELECT query.
These columns support only the = comparison, unless stated otherwise. The available columns for this
table are: ReportType, StartDate, EndDate. All other columns are processed client side.
SELECT * FROM TotalsReport WHERE ReportType = 'reviews' AND StartDate = '01/01/2019'
| Name | Type | References | Description |
| Slug | String | An alphanumeric identifier for the resource. | |
| Name | String | Review type name. | |
| Total | String | Amount of reviews. | |
| ReportType | String | Type of the report. Must be one of: reviews, products, orders, customers, coupons. | |
| StartDate | Date | Return the report for a specific start date. | |
| EndDate | Date | Return the report for a specific end date. |
| プロパティ | 説明 |
| AuthScheme | Whether to use Basic Authentication, the one-legged OAuth 1.0 Authentication or the OAuth 2.0 Authentication when connecting to WooCommerce. |
| URL | The URL of the WooCommerce instance. |
| プロパティ | 説明 |
| OAuthClientId | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthClientSecret | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| ConsumerKey | The consumer key assigned by WooCommerce when creating the authentication credentials. If this property is set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0. |
| ConsumerSecret | The consumer secret assigned by WooCommerce when creating the authentication credentials. If this and the ConsumerKey properties are set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0. |
| プロパティ | 説明 |
| SSLServerCert | TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。 |
| プロパティ | 説明 |
| FirewallType | provider がプロキシベースのファイアウォールを介してトラフィックをトンネリングするために使用するプロトコルを指定します。 |
| FirewallServer | ファイアウォールを通過し、ユーザーのクエリをネットワークリソースに中継するために使用されるプロキシのIP アドレス、DNS 名、またはホスト名を識別します。 |
| FirewallPort | プロキシベースのファイアウォールで使用するTCP ポートを指定します。 |
| FirewallUser | プロキシベースのファイアウォールに認証するアカウントのユーザーID を識別します。 |
| FirewallPassword | プロキシベースのファイアウォールで認証するユーザーアカウントのパスワードを指定します。 |
| プロパティ | 説明 |
| ProxyAutoDetect | provider が、手動で指定されたプロキシサーバーを使用するのではなく、既存のプロキシサーバー構成についてシステムプロキシ設定をチェックするかどうかを指定します。 |
| ProxyServer | HTTP トラフィックをルートするプロキシサーバーのホストネームもしくはIP アドレス。 |
| ProxyPort | クライアントとの間でHTTP トラフィックをルーティングするために予約された、指定されたプロキシサーバー(ProxyServer 接続プロパティで設定)のTCP ポート。 |
| ProxyAuthScheme | ProxyServer 接続プロパティで指定されたプロキシサーバーに対して認証する際にprovider が使用する認証方法を指定します。 |
| ProxyUser | ProxyServer 接続プロパティで指定されたプロキシサーバーに登録されているユーザーアカウントのユーザー名。 |
| ProxyPassword | ProxyUser 接続プロパティで指定されたユーザーに紐付けられたパスワード。 |
| ProxySSLType | ProxyServer 接続プロパティで指定されたプロキシサーバーに接続する際に使用するSSL タイプ。 |
| ProxyExceptions | ProxyServer 接続プロパティで設定されたプロキシサーバー経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
| プロパティ | 説明 |
| LogModules | ログファイルに含めるコアモジュールを指定します。セミコロンで区切られたモジュール名のリストを使用します。デフォルトでは、すべてのモジュールがログに記録されます。 |
| プロパティ | 説明 |
| Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリの場所を指定します。サービスの要件に応じて、これは絶対パスまたは相対パスのいずれかで表されます。 |
| BrowsableSchemas | レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
| Tables | レポートされるテーブルを利用可能なすべてのテーブルのサブセットに制限するオプション設定。例えば、 Tables=TableA,TableB,TableC です。 |
| Views | レポートされたビューを使用可能なテーブルのサブセットに制限するオプション設定。例えば、 Views=ViewA,ViewB,ViewC です。 |
| プロパティ | 説明 |
| MaxRows | 集計やGROUP BY を使用しないクエリで返される最大行数を指定します。 |
| Other | 特定のユースケースに対して追加の隠しプロパティを指定します。これらは通常のprovider の機能では必要ありません。複数のプロパティを定義するには、セミコロンで区切られたリストを使用します。 |
| Pagesize | WooCommerce から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。 |
| PseudoColumns | テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。 |
| RowScanDepth | テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。 |
| Timeout | provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。 |
| UserDefinedViews | カスタムビューを定義するJSON 構成ファイルへのファイルパスを指定します。provider は、このファイルで指定されたビューを自動的に検出して使用します。 |
このセクションでは、本プロバイダーの接続文字列で設定可能なAuthentication プロパティの全リストを提供します。
| プロパティ | 説明 |
| AuthScheme | Whether to use Basic Authentication, the one-legged OAuth 1.0 Authentication or the OAuth 2.0 Authentication when connecting to WooCommerce. |
| URL | The URL of the WooCommerce instance. |
Whether to use Basic Authentication, the one-legged OAuth 1.0 Authentication or the OAuth 2.0 Authentication when connecting to WooCommerce.
The URL of the WooCommerce instance.
The URL of the WooCommerce instance.
このセクションでは、本プロバイダーの接続文字列で設定可能なOAuth プロパティの全リストを提供します。
| プロパティ | 説明 |
| OAuthClientId | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| OAuthClientSecret | カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。 |
| ConsumerKey | The consumer key assigned by WooCommerce when creating the authentication credentials. If this property is set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0. |
| ConsumerSecret | The consumer secret assigned by WooCommerce when creating the authentication credentials. If this and the ConsumerKey properties are set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0. |
カスタムOAuth アプリケーションの作成時に割り当てられたクライアントId を指定します。(コンシューマーキーとも呼ばれます。)このID は、カスタムアプリケーションをOAuth 認可サーバーに登録します。
OAuthClientId は、ユーザーがOAuth 経由で認証を行う前に設定する必要があるいくつかの接続パラメータの1つです。詳細は接続の確立を参照してください。
カスタムOAuth アプリケーションの作成時に割り当てられたクライアントシークレットを指定します。( コンシューマーシークレット とも呼ばれます。)このシークレットは、カスタムアプリケーションをOAuth 認可サーバーに登録します。
OAuthClientSecret は、ユーザーがOAuth 経由で認証を行う前に設定する必要があるいくつかの接続パラメータの1つです。詳細は接続の確立を参照してください。
The consumer key assigned by WooCommerce when creating the authentication credentials. If this property is set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0.
As part of creating a new set of credentials, you will receive the ConsumerKey and ConsumerSecret values.
The consumer secret assigned by WooCommerce when creating the authentication credentials. If this and the ConsumerKey properties are set, and InitiateOAuth is OFF, the provider will authenticate using one-legged OAuth1.0.
As part of creating a new set of credentials, you will receive the ConsumerKey and ConsumerSecret values.
このセクションでは、本プロバイダーの接続文字列で設定可能なSSL プロパティの全リストを提供します。
| プロパティ | 説明 |
| SSLServerCert | TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。 |
TLS/SSL を使用して接続する際に、サーバーが受け入れ可能な証明書を指定します。
TLS/SSL 接続を使用する場合は、このプロパティを使用して、サーバーが受け入れるTLS/SSL 証明書を指定できます。コンピュータによって信頼されていない他の証明書はすべて拒否されます。
このプロパティは、次のフォームを取ります:
| 説明 | 例 |
| フルPEM 証明書(例では省略されています) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
| 証明書を保有するローカルファイルへのパス。 | C:\cert.cer |
| 公開鍵(例では省略されています) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
| MD5 Thumbprint (hex 値はスペースおよびコロン区切り) | ecadbdda5a1529c58a1e9e09828d70e4 |
| SHA1 Thumbprint (hex 値はスペースおよびコロン区切り) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
これを指定しない場合は、マシンが信用するすべての証明書が受け入れられます。
すべての証明書の受け入れを示すには、'*'を使用します。セキュリティ上の理由から、これはお勧めできません。
このセクションでは、本プロバイダーの接続文字列で設定可能なFirewall プロパティの全リストを提供します。
| プロパティ | 説明 |
| FirewallType | provider がプロキシベースのファイアウォールを介してトラフィックをトンネリングするために使用するプロトコルを指定します。 |
| FirewallServer | ファイアウォールを通過し、ユーザーのクエリをネットワークリソースに中継するために使用されるプロキシのIP アドレス、DNS 名、またはホスト名を識別します。 |
| FirewallPort | プロキシベースのファイアウォールで使用するTCP ポートを指定します。 |
| FirewallUser | プロキシベースのファイアウォールに認証するアカウントのユーザーID を識別します。 |
| FirewallPassword | プロキシベースのファイアウォールで認証するユーザーアカウントのパスワードを指定します。 |
provider がプロキシベースのファイアウォールを介してトラフィックをトンネリングするために使用するプロトコルを指定します。
プロキシベースのファイアウォール(またはプロキシファイアウォール)は、ユーザーのリクエストとそれがアクセスするリソースの間に介在するネットワークセキュリティデバイスです。 プロキシは認証済みのユーザーのリクエストを受け取り、ファイアウォールを通過して適切なサーバーにリクエストを送信します。
プロキシは、リクエストを送信したユーザーに代わってデータバケットを評価し転送するため、ユーザーはサーバーに直接接続することなく、プロキシのみに接続します。
Note:デフォルトでは、Sync App はシステムプロキシに接続します。この動作を無効化し、次のプロキシタイプのいずれかに接続するには、ProxyAutoDetect をfalse に設定します。
次の表は、サポートされている各プロトコルのポート番号情報です。
| プロトコル | デフォルトポート | 説明 |
| TUNNEL | 80 | Sync App がWooCommerce への接続を開くポート。トラフィックはこの場所のプロキシを経由して行き来します。 |
| SOCKS4 | 1080 | Sync App がWooCommerce への接続を開くポート。SOCKS 4 は次にFirewallUser 値をプロキシに渡し、接続リクエストが許容されるかどうかを決定します。 |
| SOCKS5 | 1080 | Sync App がWooCommerce にデータを送信するポート。SOCKS 5 プロキシに認証が必要な場合には、FirewallUser およびFirewallPassword をプロキシが認識する認証情報に設定します。 |
HTTP プロキシへの接続には、ProxyServer およびProxyPort ポートを使ってください。HTTP プロキシへの認証には、ProxyAuthScheme、ProxyUser、およびProxyPassword を使ってください。
ファイアウォールを通過し、ユーザーのクエリをネットワークリソースに中継するために使用されるプロキシのIP アドレス、DNS 名、またはホスト名を識別します。
プロキシベースのファイアウォール(またはプロキシファイアウォール)は、ユーザーのリクエストとそれがアクセスするリソースの間に介在するネットワークセキュリティデバイスです。 プロキシは認証済みのユーザーのリクエストを受け取り、ファイアウォールを通過して適切なサーバーにリクエストを送信します。
プロキシは、リクエストを送信したユーザーに代わってデータバケットを評価し転送するため、ユーザーはサーバーに直接接続することなく、プロキシのみに接続します。
プロキシベースのファイアウォールで使用するTCP ポートを指定します。
プロキシベースのファイアウォール(またはプロキシファイアウォール)は、ユーザーのリクエストとそれがアクセスするリソースの間に介在するネットワークセキュリティデバイスです。 プロキシは認証済みのユーザーのリクエストを受け取り、ファイアウォールを通過して適切なサーバーにリクエストを送信します。
プロキシは、リクエストを送信したユーザーに代わってデータバケットを評価し転送するため、ユーザーはサーバーに直接接続することなく、プロキシのみに接続します。
プロキシベースのファイアウォールに認証するアカウントのユーザーID を識別します。
プロキシベースのファイアウォール(またはプロキシファイアウォール)は、ユーザーのリクエストとそれがアクセスするリソースの間に介在するネットワークセキュリティデバイスです。 プロキシは認証済みのユーザーのリクエストを受け取り、ファイアウォールを通過して適切なサーバーにリクエストを送信します。
プロキシは、リクエストを送信したユーザーに代わってデータバケットを評価し転送するため、ユーザーはサーバーに直接接続することなく、プロキシのみに接続します。
プロキシベースのファイアウォールで認証するユーザーアカウントのパスワードを指定します。
プロキシベースのファイアウォール(またはプロキシファイアウォール)は、ユーザーのリクエストとそれがアクセスするリソースの間に介在するネットワークセキュリティデバイスです。 プロキシは認証済みのユーザーのリクエストを受け取り、ファイアウォールを通過して適切なサーバーにリクエストを送信します。
プロキシは、リクエストを送信したユーザーに代わってデータバケットを評価し転送するため、ユーザーはサーバーに直接接続することなく、プロキシのみに接続します。
このセクションでは、本プロバイダーの接続文字列で設定可能なProxy プロパティの全リストを提供します。
| プロパティ | 説明 |
| ProxyAutoDetect | provider が、手動で指定されたプロキシサーバーを使用するのではなく、既存のプロキシサーバー構成についてシステムプロキシ設定をチェックするかどうかを指定します。 |
| ProxyServer | HTTP トラフィックをルートするプロキシサーバーのホストネームもしくはIP アドレス。 |
| ProxyPort | クライアントとの間でHTTP トラフィックをルーティングするために予約された、指定されたプロキシサーバー(ProxyServer 接続プロパティで設定)のTCP ポート。 |
| ProxyAuthScheme | ProxyServer 接続プロパティで指定されたプロキシサーバーに対して認証する際にprovider が使用する認証方法を指定します。 |
| ProxyUser | ProxyServer 接続プロパティで指定されたプロキシサーバーに登録されているユーザーアカウントのユーザー名。 |
| ProxyPassword | ProxyUser 接続プロパティで指定されたユーザーに紐付けられたパスワード。 |
| ProxySSLType | ProxyServer 接続プロパティで指定されたプロキシサーバーに接続する際に使用するSSL タイプ。 |
| ProxyExceptions | ProxyServer 接続プロパティで設定されたプロキシサーバー経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
provider が、手動で指定されたプロキシサーバーを使用するのではなく、既存のプロキシサーバー構成についてシステムプロキシ設定をチェックするかどうかを指定します。
この接続プロパティをTrue に設定すると、Sync App は既存のプロキシサーバー構成についてシステムプロキシ設定をチェックします(プロキシサーバーの詳細を手動で入力する必要はありません)。
この接続プロパティは他のプロキシ設定より優先されます。特定のプロキシサーバーに接続するためにSync App を手動で構成する場合は、False に設定します。
HTTP プロキシへの接続には、ProxyServer を参照してください。SOCKS やトンネリングなどの他のプロキシには、FirewallType を参照してください。
HTTP トラフィックをルートするプロキシサーバーのホストネームもしくはIP アドレス。
ProxyAutoDetect がFalse に設定されている場合、Sync App はこの接続プロパティで指定されたプロキシサーバーを通じてのみHTTP トラフィックをルーティングします。ProxyAutoDetect がTrue に設定されている場合(デフォルト)、Sync App は代わりにシステムプロキシ設定で指定されたプロキシサーバーを介してHTTP トラフィックをルーティングします。
クライアントとの間でHTTP トラフィックをルーティングするために予約された、指定されたプロキシサーバー(ProxyServer 接続プロパティで設定)のTCP ポート。
ProxyAutoDetect がFalse に設定されている場合、Sync App はこの接続プロパティで指定されたプロキシサーバーポートを通じてのみHTTP トラフィックをルーティングします。ProxyAutoDetect がTrue に設定されている場合(デフォルト)、Sync App は代わりにシステムプロキシ設定で指定されたプロキシサーバーポートを介してHTTP トラフィックをルーティングします。
その他のプロキシタイプについては、FirewallType を参照してください。
ProxyServer 接続プロパティで指定されたプロキシサーバーに対して認証する際にprovider が使用する認証方法を指定します。
認証タイプは次のいずれかです。
"NONE" 以外のすべての値については、ProxyUser およびProxyPassword 接続プロパティも設定する必要があります。
SOCKS 5 認証のような他の認証タイプを使用するには、FirewallType を参照してください。
ProxyServer 接続プロパティで指定されたプロキシサーバーに登録されているユーザーアカウントのユーザー名。
ProxyUser および ProxyPassword 接続プロパティは、ProxyServer で指定されたHTTP プロキシに対して接続よび認証するために使用されます。
ProxyAuthScheme で利用可能な認証タイプを1つ選択した後、このプロパティを以下のように設定します。
| ProxyAuthScheme の値 | ProxyUser に設定する値 |
| BASIC | プロキシサーバーに登録されているユーザーのユーザー名。 |
| DIGEST | プロキシサーバーに登録されているユーザーのユーザー名。 |
| NEGOTIATE | プロキシサーバーが属するドメインまたは信頼されたドメイン内の有効なユーザーであるWindows ユーザーのユーザー名。user@domain またはdomain\user の形式で指定。 |
| NTLM | プロキシサーバーが属するドメインまたは信頼されたドメイン内の有効なユーザーであるWindows ユーザーのユーザー名。user@domain またはdomain\user の形式で指定。 |
| NONE | ProxyPassword 接続プロパティは設定しないでください。 |
Sync App は、ProxyAutoDetect がFalse に設定されている場合にのみ、このユーザー名を使用します。ProxyAutoDetect がTrue に設定されている場合(デフォルト)、Sync App は代わりにシステムのプロキシ設定で指定されているユーザー名を使用します。
ProxyUser 接続プロパティで指定されたユーザーに紐付けられたパスワード。
ProxyUser および ProxyPassword 接続プロパティは、ProxyServer で指定されたHTTP プロキシに対して接続よび認証するために使用されます。
ProxyAuthScheme で利用可能な認証タイプを1つ選択した後、このプロパティを以下のように設定します。
| ProxyAuthScheme の値 | ProxyPassword に設定する値 |
| BASIC | ProxyUser で指定したプロキシサーバーユーザーに紐付けられたパスワード。 |
| DIGEST | ProxyUser で指定したプロキシサーバーユーザーに紐付けられたパスワード。 |
| NEGOTIATE | ProxyUser で指定したWindows ユーザーアカウントに紐付けられたパスワード。 |
| NTLM | ProxyUser で指定したWindows ユーザーアカウントに紐付けられたパスワード。 |
| NONE | ProxyPassword 接続プロパティは設定しないでください。 |
SOCKS 5 認証もしくは、トンネリングは、FirewallType を参照してください。
Sync App は、ProxyAutoDetect がFalse に設定されている場合にのみ、このパスワードを使用します。ProxyAutoDetect がTrue に設定されている場合(デフォルト)、Sync App は代わりにシステムのプロキシ設定で指定されているパスワードを使用します。
ProxyServer 接続プロパティで指定されたプロキシサーバーに接続する際に使用するSSL タイプ。
このプロパティは、ProxyServer で指定されたHTTP プロキシへの接続にSSL を使用するかどうかを決定します。この接続プロパティには、以下の値を設定できます。
| AUTO | デフォルト設定。ProxyServer がHTTPS URL に設定されている場合、Sync App は、TUNNEL オプションを使用します。ProxyServer がHTTP URL に設定されている場合、コンポーネントはNEVER オプションを使用します。 |
| ALWAYS | 接続は、常にSSL 有効となります。 |
| NEVER | 接続は、SSL 有効になりません。 |
| TUNNEL | 接続はトンネリングプロキシ経由で行われます。プロキシサーバーがリモートホストへの接続を開き、プロキシを経由して通信が行われます。 |
ProxyServer 接続プロパティで設定されたプロキシサーバー経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。
ProxyServer は、このプロパティで定義されたアドレスを除くすべてのアドレスに使用されます。セミコロンを使用してエントリを区切ります。
Sync App はデフォルトでシステムプロキシ設定を使用するため、それ以上の設定は必要ありません。この接続にプロキシ例外を明示的に設定する場合は、ProxyAutoDetect をFalse に設定します。
このセクションでは、本プロバイダーの接続文字列で設定可能なLogging プロパティの全リストを提供します。
| プロパティ | 説明 |
| LogModules | ログファイルに含めるコアモジュールを指定します。セミコロンで区切られたモジュール名のリストを使用します。デフォルトでは、すべてのモジュールがログに記録されます。 |
ログファイルに含めるコアモジュールを指定します。セミコロンで区切られたモジュール名のリストを使用します。デフォルトでは、すべてのモジュールがログに記録されます。
このプロパティは、含めるログモジュールを指定することでログファイルの内容をカスタマイズすることができます。 ログモジュールは、クエリ実行、メタデータ、SSL 通信などの異なる領域にログ情報を分類します。 各モジュールは4文字のコードで表され、文字の名前の場合は末尾にスペースが必要なものもあります。
例えば、EXEC はクエリ実行をログに記録し、INFO は一般的なプロバイダーメッセージをログに記録します。 複数のモジュールを含めるには、次のように名前をセミコロンで区切ります:INFO;EXEC;SSL。
Verbosity 接続プロパティは、このプロパティで指定されたモジュールベースのフィルタリングよりも優先されます。 Verbosity レベルを満たし、指定されたモジュールに属するログエントリのみが記録されます。 利用可能なすべてのモジュールをログファイルに含めるには、このプロパティを空白のままにします。
利用可能なモジュールの完全なリストとログの設定に関する詳細な手引きについては、ログ の「高度なログの記録」セクションを参照してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なSchema プロパティの全リストを提供します。
| プロパティ | 説明 |
| Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリの場所を指定します。サービスの要件に応じて、これは絶対パスまたは相対パスのいずれかで表されます。 |
| BrowsableSchemas | レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
| Tables | レポートされるテーブルを利用可能なすべてのテーブルのサブセットに制限するオプション設定。例えば、 Tables=TableA,TableB,TableC です。 |
| Views | レポートされたビューを使用可能なテーブルのサブセットに制限するオプション設定。例えば、 Views=ViewA,ViewB,ViewC です。 |
テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリの場所を指定します。サービスの要件に応じて、これは絶対パスまたは相対パスのいずれかで表されます。
Location プロパティは、定義をカスタマイズしたり(例えば、カラム名を変更する、カラムを無視するなど)、新しいテーブル、ビュー、またはストアドプロシージャでデータモデルを拡張する場合にのみ必要です。
指定しない場合、デフォルトの場所は%APPDATA%\\CData\\WooCommerce Data Provider\\Schema となり、%APPDATA%はユーザーのコンフィギュレーションディレクトリに設定されます:
| プラットフォーム | %APPDATA% |
| Windows | APPDATA 環境変数の値 |
| Linux | ~/.config |
レポートされるスキーマを利用可能なすべてのスキーマのサブセットに制限するオプション設定。例えば、 BrowsableSchemas=SchemaA,SchemaB,SchemaC です。
利用可能なデータベーススキーマをすべてリストすると余分な時間がかかり、パフォーマンスが低下します。 接続文字列にスキーマのリストを指定することで、時間を節約しパフォーマンスを向上させることができます。
レポートされるテーブルを利用可能なすべてのテーブルのサブセットに制限するオプション設定。例えば、 Tables=TableA,TableB,TableC です。
データベースによっては、利用可能なすべてのテーブルをリストするのに時間がかかり、パフォーマンスが低下する場合があります。 接続文字列にテーブルのリストを指定することで、時間を節約しパフォーマンスを向上させることができます。
利用可能なテーブルがたくさんあり、すでに作業したいテーブルが決まっている場合、このプロパティを使用して対象のテーブルのみに表示を制限することができます。これを行うには、カンマ区切りのリストで使用したいテーブルを指定します。各テーブルは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space` です。
Note:複数のスキーマまたはカタログを持つデータソースに接続する場合は、表示する各テーブルを完全修飾名で指定する必要があります。これにより、複数のカタログやスキーマに存在するテーブルが混同されることを防ぎます。
レポートされたビューを使用可能なテーブルのサブセットに制限するオプション設定。例えば、 Views=ViewA,ViewB,ViewC です。
データベースによっては、利用可能なすべてのビューをリストするのに時間がかかり、パフォーマンスが低下する場合があります。 接続文字列にビューのリストを指定することで、時間を節約しパフォーマンスを向上させることができます。
利用可能なビューがたくさんあり、すでに作業したいビューが決まっている場合、このプロパティを使用して対象のビューのみに表示を制限することができます。これを行うには、カンマ区切りのリストで使用したいビューを指定します。各ビューは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space` です。
Note:複数のスキーマまたはカタログを持つデータソースに接続する場合は、確認する各ビューを完全修飾名で指定する必要があります。これにより、複数のカタログやスキーマに存在するビューが混同されることを防ぎます。
このセクションでは、本プロバイダーの接続文字列で設定可能なMiscellaneous プロパティの全リストを提供します。
| プロパティ | 説明 |
| MaxRows | 集計やGROUP BY を使用しないクエリで返される最大行数を指定します。 |
| Other | 特定のユースケースに対して追加の隠しプロパティを指定します。これらは通常のprovider の機能では必要ありません。複数のプロパティを定義するには、セミコロンで区切られたリストを使用します。 |
| Pagesize | WooCommerce から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。 |
| PseudoColumns | テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。 |
| RowScanDepth | テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。 |
| Timeout | provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。 |
| UserDefinedViews | カスタムビューを定義するJSON 構成ファイルへのファイルパスを指定します。provider は、このファイルで指定されたビューを自動的に検出して使用します。 |
集計やGROUP BY を使用しないクエリで返される最大行数を指定します。
このプロパティは、集計やGROUP BY 句を含まないクエリに対してSync App が返す行数の上限を設定します。 この制限により、クエリがデフォルトで過度に大きな結果セットを返さないようにします。
クエリにLIMIT 句が含まれている場合、クエリで指定された値がMaxRows 設定よりも優先されます。 MaxRows が"-1" に設定されている場合、LIMIT 句が明示的にクエリに含まれていない限り、行の制限は行われません。
このプロパティは、非常に大きなデータセットを返す可能性のあるクエリを実行する際に、パフォーマンスを最適化し過剰なリソース消費を防ぐのに役立ちます。
特定のユースケースに対して追加の隠しプロパティを指定します。これらは通常のprovider の機能では必要ありません。複数のプロパティを定義するには、セミコロンで区切られたリストを使用します。
このプロパティは、シニアユーザーが特定のシナリオに対して隠しプロパティを設定できるようにします。 これらの設定は通常のユースケースには必要ありませんが、特定の要件に対応したり、追加の機能を提供したりすることができます。 複数のプロパティをセミコロン区切りのリストで定義できます。
Note: 特定のシナリオや問題に対処するためにサポートチームから助言があった場合にのみ、これらのプロパティを設定することを強く推奨します。
複数のプロパティをセミコロン区切りリストで指定します。
| DefaultColumnSize | データソースがメタデータにカラムの長さを提供しない場合に、文字列フィールドのデフォルトの長さを設定します。デフォルト値は2000です。 |
| ConvertDateTimeToGMT | 日時の値を、マシンのローカルタイムではなくGMT グリニッジ標準時に変換するかどうかを決定します。 |
| RecordToFile=filename | 基底のソケットデータ転送を指定のファイルに記録します。 |
WooCommerce から返される、1ページあたりの結果の最大数を指定します。この設定は、ほとんどのユースケースに最適化されている、データソースによって設定されたデフォルトのページサイズをオーバーライドします。
クエリする特定のオブジェクトやサービスエンドポイントの結果を最適化するために、デフォルトのページサイズを調整したい場合があります。 ページサイズを大きくするとパフォーマンスが向上するかもしれませんが、ページあたりのメモリ消費量が増える可能性もあることに注意してください。
テーブルカラムとして公開する擬似カラムを指定します。'TableName=ColumnName;TableName=ColumnName' という形式を使用します。デフォルトは空の文字列で、このプロパティを無効にします。
このプロパティを使用すると、Sync App がテーブルカラムとして公開する擬似カラムを定義できます。
個々の擬似カラムを指定するには、以下の形式を使用します。"Table1=Column1;Table1=Column2;Table2=Column3"
すべてのテーブルのすべての擬似カラムを含めるには、次のようにします:"*=*"
テーブルで利用可能なカラムを探すためにスキャンする行数の最大値。
テーブルのカラムはテーブル行をスキャンすることで決定される必要があります。この値はスキャンされる行数の最大値を設定します。
大きい値を設定すると、パフォーマンスが低下する場合があります。小さい値を設定すると、特にnull データがある場合には、データ型を正しく判定できない場合があります。
provider がタイムアウトエラーを返すまでにサーバーからの応答を待機する最大時間を秒単位で指定します。デフォルトは60秒です。タイムアウトを無効にするには0を設定します。
このプロパティは、Sync App が操作をキャンセルする前に操作の完了を待機する最大時間を秒単位で制御します。 操作の完了前にタイムアウト時間が経過すると、Sync App は操作をキャンセルして例外をスローします。
タイムアウトは、クエリや操作全体ではなくサーバーとの個々の通信に適用されます。 例えば、各ページング呼び出しがタイムアウト制限内に完了する場合、クエリは60秒を超えて実行を続けることができます。
このプロパティを0に設定するとタイムアウトが無効になり、操作が成功するか、サーバー側のタイムアウト、ネットワークの中断、またはサーバーのリソース制限などの他の条件で失敗するまで無期限に実行されます。 このプロパティは慎重に使用してください。長時間実行される操作がパフォーマンスを低下させたり、応答しなくなる可能性があるためです。
カスタムビューを定義するJSON 構成ファイルへのファイルパスを指定します。provider は、このファイルで指定されたビューを自動的に検出して使用します。
このプロパティを使用すると、UserDefinedViews.json というJSON 形式の構成ファイルを通じてカスタムビューを定義および管理できます。 これらのビューはSync App によって自動的に認識され、標準のデータベースビューのようにカスタムSQL クエリを実行できるようになります。 JSON ファイルは、各ビューをルート要素として定義し、その子要素として"query" を持ちます。この"query" にはビューのSQL クエリが含まれています。次に例を示します。
{
"MyView": {
"query": "SELECT * FROM Orders WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
このプロパティを使用して、1つのファイルに複数のビューを定義し、ファイルパスを指定できます。 例:UserDefinedViews=C:\Path\To\UserDefinedViews.json。 このプロパティを使用すると、指定されたビューのみがSync App によって検知されます。
詳しくは、ユーザー定義ビュー を参照してください。