Chilkat Online Tools

SQL Server / Salesforce Platform APIs / Calculate Price (New Sale Bundles)

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    -- The following JSON is sent in the request body.

    -- {
    --   "listPricebookId": "{{standardPricebook}}",
    --   "candidatePricebookIds": [
    --     "{{standardPricebook}}"
    --   ],
    --   "pricingFlow": "GET_PRICE_USING_CONTEXT",
    --   "graph": {
    --     "graphId": "1",
    --     "records": [
    --       {
    --         "referenceId": "ref_sales_txn",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTransactionShape"
    --           },
    --           "CurrencyIsoCode": "USD"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_sales_txn_item1",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTransactionItemShape"
    --           },
    --           "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
    --           "StartDate": "2022-01-01",
    --           "ProductId": "{{WorkAnywhereBundleProduct}}",
    --           "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
    --           "Quantity": 10.0,
    --           "PricingTransactionType": "NewSale",
    --           "CurrencyIsoCode": "USD"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_sales_txn_item2",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTransactionItemShape"
    --           },
    --           "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
    --           "StartDate": "2023-01-01",
    --           "ProductId": "{{VirtualRouterProduct}}",
    --           "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
    --           "Quantity": 10.0,
    --           "PricingTransactionType": "NewSale",
    --           "CurrencyIsoCode": "USD"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_sales_txn_item3",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTransactionItemShape"
    --           },
    --           "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
    --           "StartDate": "2023-01-01",
    --           "ProductId": "{{SLA_BronzeProduct}}",
    --           "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
    --           "Quantity": 10.0,
    --           "PricingTransactionType": "NewSale",
    --           "CurrencyIsoCode": "USD"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_sales_txn_item4",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTransactionItemShape"
    --           },
    --           "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
    --           "StartDate": "2023-01-01",
    --           "ProductId": "{{ClassTrainingProduct}}",
    --           "ProductSellingModelId": "{{OneTimePSM}}",
    --           "Quantity": 50.0,
    --           "PricingTransactionType": "NewSale",
    --           "CurrencyIsoCode": "USD"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_rel1",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTrxnItemRelationShape"
    --           },
    --           "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
    --           "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item2.Id}",
    --           "MainSalesTrxnItemShapeRole": "Bundle",
    --           "AssocSalesTrxnItemShapeRole": "BundleComponent",
    --           "AssociatedItemShapePricing": "IncludedInBundlePrice"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_rel2",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTrxnItemRelationShape"
    --           },
    --           "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
    --           "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item3.Id}",
    --           "MainSalesTrxnItemShapeRole": "Bundle",
    --           "AssocSalesTrxnItemShapeRole": "BundleComponent",
    --           "AssociatedItemShapePricing": "IncludedInBundlePrice"
    --         }
    --       },
    --       {
    --         "referenceId": "ref_rel3",
    --         "record": {
    --           "attributes": {
    --             "type": "SalesTrxnItemRelationShape"
    --           },
    --           "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
    --           "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item4.Id}",
    --           "MainSalesTrxnItemShapeRole": "Bundle",
    --           "AssocSalesTrxnItemShapeRole": "BundleComponent",
    --           "AssociatedItemShapePricing": "NotIncludedInBundlePrice"
    --         }
    --       }
    --     ]
    --   }
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'listPricebookId', '{{standardPricebook}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'candidatePricebookIds[0]', '{{standardPricebook}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'pricingFlow', 'GET_PRICE_USING_CONTEXT'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.graphId', '1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[0].referenceId', 'ref_sales_txn'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[0].record.attributes.type', 'SalesTransactionShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[0].record.CurrencyIsoCode', 'USD'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].referenceId', 'ref_sales_txn_item1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.attributes.type', 'SalesTransactionItemShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.SalesTransactionShapeId', '@{ref_sales_txn.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.StartDate', '2022-01-01'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.ProductId', '{{WorkAnywhereBundleProduct}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.ProductSellingModelId', '{{EvergreenMonthlyPSM}}'
    EXEC sp_OAMethod @json, 'UpdateNumber', @success OUT, 'graph.records[1].record.Quantity', '10.0'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.PricingTransactionType', 'NewSale'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[1].record.CurrencyIsoCode', 'USD'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].referenceId', 'ref_sales_txn_item2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.attributes.type', 'SalesTransactionItemShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.SalesTransactionShapeId', '@{ref_sales_txn.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.StartDate', '2023-01-01'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.ProductId', '{{VirtualRouterProduct}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.ProductSellingModelId', '{{EvergreenMonthlyPSM}}'
    EXEC sp_OAMethod @json, 'UpdateNumber', @success OUT, 'graph.records[2].record.Quantity', '10.0'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.PricingTransactionType', 'NewSale'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[2].record.CurrencyIsoCode', 'USD'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].referenceId', 'ref_sales_txn_item3'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.attributes.type', 'SalesTransactionItemShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.SalesTransactionShapeId', '@{ref_sales_txn.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.StartDate', '2023-01-01'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.ProductId', '{{SLA_BronzeProduct}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.ProductSellingModelId', '{{EvergreenMonthlyPSM}}'
    EXEC sp_OAMethod @json, 'UpdateNumber', @success OUT, 'graph.records[3].record.Quantity', '10.0'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.PricingTransactionType', 'NewSale'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[3].record.CurrencyIsoCode', 'USD'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].referenceId', 'ref_sales_txn_item4'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.attributes.type', 'SalesTransactionItemShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.SalesTransactionShapeId', '@{ref_sales_txn.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.StartDate', '2023-01-01'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.ProductId', '{{ClassTrainingProduct}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.ProductSellingModelId', '{{OneTimePSM}}'
    EXEC sp_OAMethod @json, 'UpdateNumber', @success OUT, 'graph.records[4].record.Quantity', '50.0'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.PricingTransactionType', 'NewSale'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[4].record.CurrencyIsoCode', 'USD'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].referenceId', 'ref_rel1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.attributes.type', 'SalesTrxnItemRelationShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.MainSalesTrxnItemShapeId', '@{ref_sales_txn_item1.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.AssocSalesTrxnItemShapeId', '@{ref_sales_txn_item2.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.MainSalesTrxnItemShapeRole', 'Bundle'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.AssocSalesTrxnItemShapeRole', 'BundleComponent'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[5].record.AssociatedItemShapePricing', 'IncludedInBundlePrice'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].referenceId', 'ref_rel2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.attributes.type', 'SalesTrxnItemRelationShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.MainSalesTrxnItemShapeId', '@{ref_sales_txn_item1.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.AssocSalesTrxnItemShapeId', '@{ref_sales_txn_item3.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.MainSalesTrxnItemShapeRole', 'Bundle'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.AssocSalesTrxnItemShapeRole', 'BundleComponent'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[6].record.AssociatedItemShapePricing', 'IncludedInBundlePrice'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].referenceId', 'ref_rel3'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.attributes.type', 'SalesTrxnItemRelationShape'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.MainSalesTrxnItemShapeId', '@{ref_sales_txn_item1.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.AssocSalesTrxnItemShapeId', '@{ref_sales_txn_item4.Id}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.MainSalesTrxnItemShapeRole', 'Bundle'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.AssocSalesTrxnItemShapeRole', 'BundleComponent'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'graph.records[7].record.AssociatedItemShapePricing', 'NotIncludedInBundlePrice'

    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/services/data/v{{version}}/commerce/pricing/salestransaction/actions/calculate-price', 'application/json', @json
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    PRINT @iTmp0
    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    PRINT @sTmp0
    EXEC @hr = sp_OADestroy @resp


    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json


END
GO

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "listPricebookId": "{{standardPricebook}}",
    "candidatePricebookIds": [
        "{{standardPricebook}}"
    ],
    "pricingFlow": "GET_PRICE_USING_CONTEXT",
    "graph": {
        "graphId": "1",
        "records": [
            {
                "referenceId": "ref_sales_txn",
                "record": {
                    "attributes": {
                        "type": "SalesTransactionShape"
                    },
                "CurrencyIsoCode": "USD"                    
                }
            },
            {
                "referenceId": "ref_sales_txn_item1",
                "record": {
                    "attributes": {
                        "type": "SalesTransactionItemShape"
                    },
                    "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
                    "StartDate": "2022-01-01",
                    "ProductId": "{{WorkAnywhereBundleProduct}}",
                    "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
                    "Quantity": 10.0,
                    "PricingTransactionType": "NewSale",
                "CurrencyIsoCode": "USD"                     
                }
            },
            {
                "referenceId": "ref_sales_txn_item2",
                "record": {
                    "attributes": {
                        "type": "SalesTransactionItemShape"
                    },
                    "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
                    "StartDate": "2023-01-01",
                    "ProductId": "{{VirtualRouterProduct}}",
                    "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
                    "Quantity": 10.0,
                    "PricingTransactionType": "NewSale",
                    "CurrencyIsoCode": "USD"                     
                }
            },            
            {
                "referenceId": "ref_sales_txn_item3",
                "record": {
                    "attributes": {
                        "type": "SalesTransactionItemShape"
                    },
                    "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
                    "StartDate": "2023-01-01",
                    "ProductId": "{{SLA_BronzeProduct}}",
                    "ProductSellingModelId": "{{EvergreenMonthlyPSM}}",
                    "Quantity": 10.0,
                    "PricingTransactionType": "NewSale",
                    "CurrencyIsoCode": "USD"                     
                }
            },
            {
                "referenceId": "ref_sales_txn_item4",
                "record": {
                    "attributes": {
                        "type": "SalesTransactionItemShape"
                    },
                    "SalesTransactionShapeId": "@{ref_sales_txn.Id}",
                    "StartDate": "2023-01-01",
                    "ProductId": "{{ClassTrainingProduct}}",
                    "ProductSellingModelId": "{{OneTimePSM}}",
                    "Quantity": 50.0,
                    "PricingTransactionType": "NewSale",
                "CurrencyIsoCode": "USD"                     
                }
            },            
            {
                "referenceId": "ref_rel1",
                "record": {
                    "attributes": {
                        "type": "SalesTrxnItemRelationShape"
                    },
                    "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
                    "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item2.Id}",
                    "MainSalesTrxnItemShapeRole": "Bundle",
                    "AssocSalesTrxnItemShapeRole": "BundleComponent",
                    "AssociatedItemShapePricing": "IncludedInBundlePrice"
                }
            },
            {
                "referenceId": "ref_rel2",
                "record": {
                    "attributes": {
                        "type": "SalesTrxnItemRelationShape"
                    },
                    "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
                    "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item3.Id}",
                    "MainSalesTrxnItemShapeRole": "Bundle",
                    "AssocSalesTrxnItemShapeRole": "BundleComponent",
                    "AssociatedItemShapePricing": "IncludedInBundlePrice"
                }
            },
            {
                "referenceId": "ref_rel3",
                "record": {
                    "attributes": {
                        "type": "SalesTrxnItemRelationShape"
                    },
                    "MainSalesTrxnItemShapeId": "@{ref_sales_txn_item1.Id}",
                    "AssocSalesTrxnItemShapeId": "@{ref_sales_txn_item4.Id}",
                    "MainSalesTrxnItemShapeRole": "Bundle",
                    "AssocSalesTrxnItemShapeRole": "BundleComponent",
                    "AssociatedItemShapePricing": "NotIncludedInBundlePrice"
                }
            }                                        
        ]
    }
}'
https://domain.com/services/data/v{{version}}/commerce/pricing/salestransaction/actions/calculate-price

Postman Collection Item JSON

{
  "name": "Calculate Price (New Sale Bundles)",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"listPricebookId\": \"{{standardPricebook}}\",\n    \"candidatePricebookIds\": [\n        \"{{standardPricebook}}\"\n    ],\n    \"pricingFlow\": \"GET_PRICE_USING_CONTEXT\",\n    \"graph\": {\n        \"graphId\": \"1\",\n        \"records\": [\n            {\n                \"referenceId\": \"ref_sales_txn\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTransactionShape\"\n                    },\n                \"CurrencyIsoCode\": \"USD\"                    \n                }\n            },\n            {\n                \"referenceId\": \"ref_sales_txn_item1\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTransactionItemShape\"\n                    },\n                    \"SalesTransactionShapeId\": \"@{ref_sales_txn.Id}\",\n                    \"StartDate\": \"2022-01-01\",\n                    \"ProductId\": \"{{WorkAnywhereBundleProduct}}\",\n                    \"ProductSellingModelId\": \"{{EvergreenMonthlyPSM}}\",\n                    \"Quantity\": 10.0,\n                    \"PricingTransactionType\": \"NewSale\",\n                \"CurrencyIsoCode\": \"USD\"                     \n                }\n            },\n            {\n                \"referenceId\": \"ref_sales_txn_item2\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTransactionItemShape\"\n                    },\n                    \"SalesTransactionShapeId\": \"@{ref_sales_txn.Id}\",\n                    \"StartDate\": \"2023-01-01\",\n                    \"ProductId\": \"{{VirtualRouterProduct}}\",\n                    \"ProductSellingModelId\": \"{{EvergreenMonthlyPSM}}\",\n                    \"Quantity\": 10.0,\n                    \"PricingTransactionType\": \"NewSale\",\n                    \"CurrencyIsoCode\": \"USD\"                     \n                }\n            },            \n            {\n                \"referenceId\": \"ref_sales_txn_item3\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTransactionItemShape\"\n                    },\n                    \"SalesTransactionShapeId\": \"@{ref_sales_txn.Id}\",\n                    \"StartDate\": \"2023-01-01\",\n                    \"ProductId\": \"{{SLA_BronzeProduct}}\",\n                    \"ProductSellingModelId\": \"{{EvergreenMonthlyPSM}}\",\n                    \"Quantity\": 10.0,\n                    \"PricingTransactionType\": \"NewSale\",\n                    \"CurrencyIsoCode\": \"USD\"                     \n                }\n            },\n            {\n                \"referenceId\": \"ref_sales_txn_item4\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTransactionItemShape\"\n                    },\n                    \"SalesTransactionShapeId\": \"@{ref_sales_txn.Id}\",\n                    \"StartDate\": \"2023-01-01\",\n                    \"ProductId\": \"{{ClassTrainingProduct}}\",\n                    \"ProductSellingModelId\": \"{{OneTimePSM}}\",\n                    \"Quantity\": 50.0,\n                    \"PricingTransactionType\": \"NewSale\",\n                \"CurrencyIsoCode\": \"USD\"                     \n                }\n            },            \n            {\n                \"referenceId\": \"ref_rel1\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTrxnItemRelationShape\"\n                    },\n                    \"MainSalesTrxnItemShapeId\": \"@{ref_sales_txn_item1.Id}\",\n                    \"AssocSalesTrxnItemShapeId\": \"@{ref_sales_txn_item2.Id}\",\n                    \"MainSalesTrxnItemShapeRole\": \"Bundle\",\n                    \"AssocSalesTrxnItemShapeRole\": \"BundleComponent\",\n                    \"AssociatedItemShapePricing\": \"IncludedInBundlePrice\"\n                }\n            },\n            {\n                \"referenceId\": \"ref_rel2\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTrxnItemRelationShape\"\n                    },\n                    \"MainSalesTrxnItemShapeId\": \"@{ref_sales_txn_item1.Id}\",\n                    \"AssocSalesTrxnItemShapeId\": \"@{ref_sales_txn_item3.Id}\",\n                    \"MainSalesTrxnItemShapeRole\": \"Bundle\",\n                    \"AssocSalesTrxnItemShapeRole\": \"BundleComponent\",\n                    \"AssociatedItemShapePricing\": \"IncludedInBundlePrice\"\n                }\n            },\n            {\n                \"referenceId\": \"ref_rel3\",\n                \"record\": {\n                    \"attributes\": {\n                        \"type\": \"SalesTrxnItemRelationShape\"\n                    },\n                    \"MainSalesTrxnItemShapeId\": \"@{ref_sales_txn_item1.Id}\",\n                    \"AssocSalesTrxnItemShapeId\": \"@{ref_sales_txn_item4.Id}\",\n                    \"MainSalesTrxnItemShapeRole\": \"Bundle\",\n                    \"AssocSalesTrxnItemShapeRole\": \"BundleComponent\",\n                    \"AssociatedItemShapePricing\": \"NotIncludedInBundlePrice\"\n                }\n            }                                        \n        ]\n    }\n}"
    },
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/commerce/pricing/salestransaction/actions/calculate-price",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "commerce",
        "pricing",
        "salestransaction",
        "actions",
        "calculate-price"
      ]
    },
    "description": "Calculate the price of the Work Anywhere software bundle plus all it's bundle components for the pricing period of 1 month. Because this bundle is sold on an evergreen subscription rather than a termed subscription, the price is calculated per month rather than for the length of the subscription.\n\nAdd one RelationShape for each bundle component. Note that the classroom training product is not included in the bundle price, while the other two bundle components are.\n\nSee [Calculate Price](https://desktop.postman.com/?desktopVersion=10.13.6&webVersion=10.13.7-ui-230522-1730&userId=10709048&teamId=0)."
  },
  "response": [
  ]
}