Get Bulk Edit Metadata
GET/api/v2/products/bulk-edit-metadata
Returns the dynamic field definitions available to bulk product edits: product attributes (with their type, display configuration, validation rules and configured options), product pricing tiers, supplier pricing tiers, and suppliers.
products:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Each attribute includes:
type— stored data type:string,longtext,numeric,integer,date,datetime,checkboxhas_options— whether values are restricted to a configured option listoptions— the configured option values as plain stringsattribute_options— the same options with per-option swatch data (value,swatch_hex,swatch_image_url,sort_order)display_options—has_options,type(SingleorMulti),option_display_type(e.g.swatch),allow_custom_value,is_html,is_link,sort_ordervalidation— optional constraints:limit(max characters),precision(decimal places),min,maxgroup_name— the attribute group the attribute belongs to, orUngrouped
Multi-value attributes (display_options.type = Multi) hold every selected value in a single newline-separated string. Send them back the same way when setting a value.
Archived attributes are excluded. Attributes are ordered by name.
Authentication: Requires Bearer token.
Request
Responses
- 200
- 401
- 403
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.