• PXM Hierarchies/
    PXM Node Relationships API/
    Get a Nodeʼs Products

    Get a Nodeʼs Products

    GET Get a Nodeʼs Products

    https://api.moltin.com/pcm/hierarchies/:hierarchyId/nodes/:nodeId/products
    

    Returns the products associated with the specified hierarchy node from a published catalog. Products must be in a live status. If the products have been curated using the update a hierarchy node endpoint, then the products are returned in the order specified in the curated_products attribute in the body of the update a hierarchy node request. A product that is curated has the "curated_product": true attribute displayed.

    Parameters

    Path parameters

    NameRequiredTypeDescription
    hierarchyIdRequiredstringThe unique identifier of the hierarchy.
    nodeIdRequiredstringThe unique identifier of the node in the hierarchy.

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token to grant access to the API.

    Query parameters

    NameRequiredTypeDescription
    page[limit]OptionalstringThe number of items to return per page. Minimum value is 1.
    page[offset]OptionalstringThe number of items to offset the results by. Offset is zero-based.

    Request Example

    curl -X GET https://api.moltin.com/pcm/hierarchies/0e119de2-5fb0-4bca-9b84-b3fc6c903007/nodes/de3c3590-4138-4943-b04d-d7b7dc48fa54/products \
         -H "Authorization: Bearer XXXX" \
    

    Response Example

    200 OK

    {
        "data": [
            {
                "type": "product",
                "id": "14e055d0-eebb-4090-8594-a0a7aeea2151",
                "attributes": {
                    "commodity_type": "physical",
                    "curated_product": true,
                    "description": "This gas model includes a convection oven.",
                    "mpn": "BE-R-2222-bbbb-2b2b",
                    "name": "BestEver Range, Model 2b2b",
                    "sku": "BE-Range-2b2b",
                    "slug": "bestever-range-2b2b",
                    "status": "draft",
                    "upc_ean": "222233334444"
                },
                "relationships": {
                    "files": {
                        "data": [],
                        "links": {
                            "self": "/products/14e055d0-eebb-4090-8594-a0a7aeea2151/relationships/files"
                        }
                    },
                    "templates": {
                        "data": [],
                        "links": {
                            "self": "/products/14e055d0-eebb-4090-8594-a0a7aeea2151/relationships/templates"
                        }
                    }
                }
            },
            {
                "type": "product",
                "id": "ca9cee27-eabd-472a-ae0a-11dcbcc0f7af",
                "attributes": {
                    "commodity_type": "physical",
                    "description": "The 30 inch version of this popular range.",
                    "mpn": "BE-R-2222-bbbb-2b2b-30",
                    "name": "BestEver Range 30 inch, Model 2b2b-30",
                    "sku": "BE-Range-2b2b-30",
                    "slug": "bestever-range-2b2b-30",
                    "status": "draft",
                    "upc_ean": "222230303030"
                },
                "relationships": {
                    "files": {
                        "data": [],
                        "links": {
                            "self": "/products/ca9cee27-eabd-472a-ae0a-11dcbcc0f7af/relationships/files"
                        }
                    },
                    "templates": {
                        "data": [],
                        "links": {
                            "self": "/products/ca9cee27-eabd-472a-ae0a-11dcbcc0f7af/relationships/templates"
                        }
                    }
                }
            },
            {
                "type": "product",
                "id": "d4d4744f-a2e5-4925-a613-5aeb0971337e",
                "attributes": {
                    "commodity_type": "physical",
                    "description": "The 32 inch version of this popular range.",
                    "mpn": "BE-R-2222-bbbb-2b2b-32",
                    "name": "BestEver Range 32 inch, Model 2b2b-32",
                    "sku": "BE-Range-2b2b-32",
                    "slug": "bestever-range-2b2b-32",
                    "status": "draft",
                    "upc_ean": "222232323232"
                },
                "relationships": {
                    "files": {
                        "data": [],
                        "links": {
                            "self": "/products/d4d4744f-a2e5-4925-a613-5aeb0971337e/relationships/files"
                        }
                    },
                    "templates": {
                        "data": [],
                        "links": {
                            "self": "/products/d4d4744f-a2e5-4925-a613-5aeb0971337e/relationships/templates"
                        }
                    }
                }
            }
        ]
    }
    

    Was this helpful?