Retrieve Product Child Item Details

Retrieve the details of an individual product child item by specifying its ID.

  • 1GET v2/epc/productchilditems/{product_child_item_ID}
1-   ```nolang
2GET v2/epc/productchilditems?ids={product_child_item_ID}

Remote Method 

1readPCI

REST Handler 

1APIProductChildItemRestHandler

Apex Remote Service 

1PCAppHandler

Package 

Communication (vlocity_cmt)

API Parameters and Response Format 

For API parameter names and descriptions, see the Swagger (OpenAPI) reference documentation for Industries EPC REST APIs.

Resource Information 

Response FormatJSON
Resource URL/services/apexrest/{namespace}/v2/epc/productchilditems/{product_child_item_ID}

Example Requests 

1GET v2/epc/productchilditems?ids=a3C3h000000Je8oEAC
1GET v2/epc/productchilditems/a3C3h000000Je8oEAC

Example Result 

1{
2    "epcResponse": {
3        "entities": [
4            {
5                "entity": {
6                    "attributes": {
7                        "type": "vlocity_cmt__ProductChildItem__c",
8                        "url": "/services/data/v53.0/sobjects/vlocity_cmt__ProductChildItem__c/a3C3h000000Je8oEAC"
9                    },
10                    "Id": "a3C3h000000Je8oEAC"
11                }
12            }
13        ],
14        "overallResult": "success"
15    }
16}