Performs retrieval of templates that control this display of BOM and Recommended Parts.

get

/ccstore/v1/cpq/configurations/templates/{id}

This endpoint retrieves templates that can be used to control the columns to be displayed for BOM and Recommended Parts tables.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The templates for displaying BOM and recommended parts.
Body ()
Root Schema : TemplatesResponse
Type: object
Show Source
Example:
{
    "modelTemplate":{
        "items":[
            {
                "variableName":"modelName",
                "name":"Model Name",
                "label":"Model Name",
                "type":"String",
                "order":1
            },
            {
                "variableName":"description",
                "name":"Description",
                "label":"Description",
                "type":"String",
                "order":2
            },
            {
                "variableName":"price",
                "name":"Price",
                "label":"Price",
                "type":"Currency",
                "order":3
            },
            {
                "variableName":"quantity",
                "name":"Quantity",
                "label":"Quantity",
                "type":"Integer",
                "order":4
            },
            {
                "variableName":"comment",
                "name":"Comment",
                "label":"Comment",
                "type":"String",
                "order":5
            }
        ]
    },
    "partsTemplate":{
        "items":[
            {
                "variableName":"partNumber",
                "name":"Part Number",
                "label":"Part Number",
                "type":"String",
                "order":1
            },
            {
                "variableName":"description",
                "name":"Description",
                "label":"Description",
                "type":"String",
                "order":2
            },
            {
                "variableName":"price",
                "name":"Price",
                "label":"Price",
                "type":"Currency",
                "order":3
            },
            {
                "variableName":"quantity",
                "name":"Quantity",
                "label":"Quantity",
                "type":"Integer",
                "order":4
            },
            {
                "variableName":"comment",
                "name":"Comment",
                "label":"Comment",
                "type":"String",
                "order":5
            }
        ]
    }
}
Nested Schema : modelTemplate
Type: object
Show Source
Nested Schema : partsTemplate
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source

400 Response

Bad request input data
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top