Create a node
POST/pcm/hierarchies/:hierarchyID/nodes
Creates a node in the specified hierarchy.
Custom Attributes
Custom attributes allow you to extend the data model with your own key-value data.
You can define up to 100 custom attributes in each group (shopper_attributes
and admin_attributes
). Both keys and values must be strings.
shopper_attributes
are visible in shopper-facing catalogs and accessible to both shoppers and administrators. Ideal for customer-facing data, such as promotional labels or product tags.admin_attributes
are private and not visible in catalogs. Best suited for internal operational data, such as cost tracking or workflow metadata.
See Custom Attributes.
Sorting Nodes in a Hierarchy
You can sort the order of your nodes, regardless of where the nodes are in the hierarchy.
You can do this by adding a meta
object to the body of your request and specifying a sort_order
value.
The node with the highest value of sort_order
is displayed first. For example, a node with a sort_order
value of 3
appears before a node with a sort_order
value of 2
.
- If you don’t provide
sort_order
when creating nodes, all child nodes in the response for Get a Node’s Children request are ordered by theupdated_at
time in descending order, with the most recently updated child node first. - If you set
sort_order
for only a few child nodes, the child nodes with asort_order
value appear first and then other child nodes appear in the order ofupdated_at
time.
You can also specify a sort_order
when creating a node relationship.
- If you create a node (Node A) with a
sort_order
and then you create a relationship for Node A with another node (Node B), thesort_order
you specified when creating Node A is overwritten. - If you create Node A and then you create a relationship with Node B but do not configure a
sort_order
, thesort_order
you specified when you created Node A is not overwritten.
Curating Products in a node
You can curate the products in a node. Product curation allows you to promote specific products within each node of your hierarchies, enabling you to create unique product collections in your storefront. For example, you may find you have an abundance of cotton T-Shirts and you want to promote these products to the top of the product list. When a shopper navigates to T-shirts, the cotton T-Shirts are displayed first.
You can do this by adding a curated_products
attribute to the body of your request and adding an array of product IDs to the attribute. You should add the products IDs in the order you want them to be displayed in your node. The first product ID is displayed first in the product list.
You can only curate 20 products or less. You cannot have more than 20 curated products.
- The product IDs you provide must exist in the specified node.
- If a curated product is removed from a node, the product is also removed from the curated_products list.
- Once you have curated the products in a node, you can use the get node products endpoint to retrieve a list of curated products.
You can then display your curated products in your catalogs using the following catalog endpoints.
- Get a node in your latest catalog release.
- Get a node in a catalog.
- Get all nodes in your latest catalog release.
- Get all nodes in a catalog.
- Get node children in your latest catalog release.
- Get node children in a catalog.
Request
Responses
- 201
- 403
- 404
- 422
- 500
Successfully returns the created node
Forbidden
Bad Request. Not Found.
Bad request. The request failed validation.
Internal server error. There was a system failure in the platform.