ProductUrlLocales
Overrides for the product in a channel locale.
Table Specific Information
Select
The connector uses the BigCommerce API to process WHERE clause conditions built with the following columns and operators:
- ChannelId supports the = comparison. Required filter.
- LocaleId supports the = comparison. Required filter.
The rest of the filter is executed client-side within the connector.
For example, the following queries are processed server-side:
SELECT * FROM ProductUrlLocales;
SELECT * FROM ProductUrlLocales WHERE ChannelId = '1' AND LocaleId = 'en';
Update
You can set locale-specific URL path for a product. You must specify ProductId, ChannelId and LocaleId in the WHERE clause. For example:
UPDATE ProductUrlLocales SET UrlPathPath = '/produit-exemple-fr/' WHERE ProductId = '111' AND ChannelId = '1' AND LocaleId = 'fr';
Delete
You can remove locale-specific URL path overrides.
DELETE FROM ProductUrlLocales WHERE ProductId = '111' AND ChannelId = '1' AND LocaleId = 'fr';
Columns
| Name | Type | ReadOnly | Description |
| ProductId [KEY] | String | False |
The unique identifiers of the products. |
| ChannelId [KEY] | String | False |
Storefront channel. |
| LocaleId [KEY] | String | False |
Locale in the channel. |
| UrlPathPath | String | False |
Path override value in a channel locale. |