Add column attribute to product.

Use this endpoint to add a column attribute to a product in Bluestone PIM. You can specify the attribute values, context, and whether to use a fallback for context.

For more details, refer to the Create, edit or remove attributes.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

The internal ID of the product for which the column attribute is being added.

Example: 634c26e14cedfd0001775e9f

Body Params
column
object

Column attribute values for the product.

A column attribute has a number of pre-defined columns and only one attribute value per column. One can think of it as a table with pre-defined columns but only one row.

Expected input format:

"column": {
  "<column ID>": "<column value>",
  "<column ID>": "<column value>",
  ...
}

Example:

Let us say that I have these columns pre-defined in the column attribute definition: "Column 1", with ID: 6356b491590801000124ef2d "Column 2", with ID: 6356b491590801000124ef2e "Column 3", with ID: 6356b491590801000124ef2f

I would like to store these values ("A", "B" and "C") in the columns:

"Column 1""Column 2""Column 3"
Value (row 1):"A""B""C"

Then that would correspond to this json structure:

"column": {
  "6356b491590801000124ef2d": "A",
  "6356b491590801000124ef2e": "B",
  "6356b491590801000124ef2f": "C"
}
string

ID of the attribute definition.

Example: 634c26e14cedfd0001775e9f

Headers
string

Specifies the context in which to operate. If omitted, the default context en is used.

In Bluestone PIM, the context is generally synonymous with the language setting. The context determines how product information is tailored and presented based on language or other local specifications.

For more detailed information on how context relates to language settings in Bluestone PIM, refer to the Languages and Context documentation.

Note: The default context is identified by the ID "en". IDs for additional contexts begin with a lowercase "L", not with the digit "1", followed by a number. This naming convention helps distinguish between default and custom contexts within Bluestone PIM.

string

Specifies whether to enable the fallback mechanism for the context. If omitted, the default value true will be used. When set to true, the system will provide a default translation or relevant information if the requested context's specific translation is missing.

For more detailed information on how context relates to language settings in Bluestone PIM, refer to the Languages and Context documentation.

Note: Setting the context-fallback parameter to false disables the fallback mechanism. In this configuration, if a translation or specific context information is not available, the system will not provide an alternative or default content. This ensures that only content that matches the exact context ID requested is returned, potentially leading to cases where no content is available if the specific translation is missing.

Responses
201

Created

Language
Credentials
OAuth2
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json