Tableau Connector for BigCommerce

Build 26.0.9655

SetSharedVariantOptionsLocale

Sets locale override fields for a shared variant option. Supports setting displayName and values for option types: Dropdown, RadioButtons, RectangleList, Swatch. 

Stored Procedure Specific Information

You can set locale override fields for a shared variant option. Each option type (Dropdown, RadioButtons, RectangleList, Swatch) supports setting displayName and values.

The values parameter should be a JSON array of objects with valueId and label properties.

For example:

EXECUTE SetSharedVariantOptionsLocale SharedProductOptionId = '5', ChannelId = '1', LocaleId = 'fr', DropdownDisplayName = 'Taille', DropdownValues = '{"valueId": "bc/store/sharedProductOptionValue/101", "label": "Petit"}, {"valueId": "bc/store/sharedProductOptionValue/102", "label": "Grand"}'

Input

Name Type Required Description
SharedProductOptionId String True The ID of the shared product option.
ChannelId String True The channel ID.
LocaleId String True The locale code (e.g., 'en', 'fr').
DropdownDisplayName String False The localized display name for dropdown option.
DropdownValues String False The localized values for dropdown option.
RadioButtonsDisplayName String False The localized display name for radio buttons option.
RadioButtonsValues String False The localized values for radio buttons option.
RectangleListDisplayName String False The localized display name for rectangle list option.
RectangleListValues String False The localized values for rectangle list option.
SwatchDisplayName String False The localized display name for swatch option.
SwatchValues String False The localized values for swatch option.

Result Set Columns

Name Type Description
SharedProductOptionId String The ID of the shared product option.
Success Boolean Indicates whether or not the operation executed successfully.
Details String Any extra details on the operation's execution.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655