Metafields
Get brand metafields
GET https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/brands/{brand_id}/metafieldsRequest
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- brand_id in path - integerrequired
The ID of the brand to which the resource belongs.
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- id in query - integer
Filter items by ID.
- id:in in query - arrayType: array[integer]
- id:not_in in query - arrayType: array[integer]
- id:min in query - arrayType: array[integer]
- id:max in query - arrayType: array[integer]
- id:greater in query - arrayType: array[integer]
- id:less in query - arrayType: array[integer]
- page in query - integerSpecifies the page number in a limited (paginated) list of products.
- limit in query - integerControls the number of items per page in a limited (paginated) list of products.
- key in query - stringFilter based on a metafieldʼs key.
- namespace in query - stringFilter based on a metafieldʼs namespaces.
- include_fields in query - arrayFields to include, in a comma-separated list. The ID and the specified fields will be returned.Type: array[string]
- exclude_fields in query - arrayFields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.Type: array[string]
example
Response
Body
dataarray[object]
example
Create a Brand Metafield
POST https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/brands/{brand_id}/metafieldsRequest
Creates a brand metafield.
Note: The maximum number of metafields allowed on each order, product, category, variant, or brand is 250 per client ID. For more information, see Platform Limits in the Help Center.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- brand_id in path - integerrequired
The ID of the brand to which the resource belongs.
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
keystring
required>= 1 characters<= 64 charactersThe name of the field, for example:
location_id
,color
. Required for POST.Example: Locationvaluestring
required>= 1 characters<= 65535 charactersThe value of the field, for example:
1
,blue
. Required for POST.Example: 4HGnamespacestring
required>= 1 characters<= 64 charactersNamespace for the metafield, for organizational purposes. This is set by the developer. Required for POST.
Example: Warehouse Locationsdescriptionstring
>= 0 characters<= 255 charactersDescription for the metafields.
Example: Location in the warehouse
example
Response
Body
dataobject
Metafield for products, categories, variants, and brands; the max number of metafields allowed on each is 50. For more information, see Platform Limits in the Help Center.
example-1
example-2
example-3
Get a Brand Metafields
GET https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/brands/{brand_id}/metafields/{metafield_id}Request
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- brand_id in path - integerrequired
The ID of the brand to which the resource belongs.
- metafield_id in path - integerrequired
The ID of the
Metafield
. - Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- include_fields in query - arrayFields to include, in a comma-separated list. The ID and the specified fields will be returned.Type: array[string]
- exclude_fields in query - arrayFields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.Type: array[string]
example
Response
Body
dataobject
Metafield for products, categories, variants, and brands; the max number of metafields allowed on each is 50. For more information, see Platform Limits in the Help Center.
example
Update a Brand Metafield
PUT https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/brands/{brand_id}/metafields/{metafield_id}Request
Updates a brand metafield.
Required Fields
- none
Read-Only Fields
- id
- These fields can only be modified by the app (API credentials) that created the metafield:
- namespace
- key
- permission_set
Usage Notes
- Attempting to modify
namespace
,key
, andpermission_set
fields using a client ID different from the one used to create those metafields will result in a 403 error message. - The maximum number of metafields allowed on each order, product, category, variant, or brand is 250 per client ID. For more information, see Platform Limits in the Help Center.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- brand_id in path - integerrequired
The ID of the brand to which the resource belongs.
- metafield_id in path - integerrequired
The ID of the
Metafield
. - Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
Common Metafield properties.
namespacestring
>= 1 characters<= 64 charactersNamespace for the metafield, for organizational purposes.
Example: Sales Departmentkeystring
>= 1 characters<= 64 charactersThe name of the field, for example:
location_id
,color
.Example: Staff Namevaluestring
>= 1 characters<= 65535 charactersThe value of the field, for example:
1
,blue
.Example: Ronaldodescriptionstring
>= 0 characters<= 255 charactersDescription for the metafields.
Example: Name of Staff Member
example
Response
Body
dataobject
Metafield for products, categories, variants, and brands; the max number of metafields allowed on each is 50. For more information, see Platform Limits in the Help Center.
example
Delete a Brand Metafield
DELETE https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/brands/{brand_id}/metafields/{metafield_id}Request
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- brand_id in path - integerrequired
The ID of the brand to which the resource belongs.
- metafield_id in path - integerrequired
The ID of the
Metafield
. - Accept in header with default of application/json - stringrequiredThe MIME type of the response body.