Chilkat Online Tools

unicodeC / Salesforce Platform APIs / Create Order With Bundle

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

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

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

    // {
    //   "allOrNone": true,
    //   "compositeRequest": [
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/Order",
    //       "referenceId": "refOrder",
    //       "body": {
    //         "AccountId": "{{defaultAccount}}",
    //         "EffectiveDate": "2023-01-01",
    //         "Pricebook2Id": "{{standardPricebook}}",
    //         "BillToContactId": "{{defaultBillToContact}}",
    //         "Status": "Draft"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/AppUsageAssignment",
    //       "referenceId": "refAppTag",
    //       "body": {
    //         "AppUsageType": "SubscriptionManagement",
    //         "RecordId": "@{refOrder.id}"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderAction",
    //       "referenceId": "refOrderAction",
    //       "body": {
    //         "OrderId": "@{refOrder.id}",
    //         "Type": "New Sale"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderItem",
    //       "referenceId": "refWorkAnywhereBundle",
    //       "body": {
    //         "OrderId": "@{refOrder.id}",
    //         "OrderActionId": "@{refOrderAction.id}",
    //         "PricebookEntryId": "{{WorkAnywhereBundlePBE}}",
    //         "ServiceDate": "2023-01-01",
    //         "Quantity": 1,
    //         "UnitPrice": 10000,
    //         "NetUnitPrice": 10000,
    //         "TotalLineAmount": 10000,
    //         "PeriodBoundary": "AlignToCalendar",
    //         "BillingFrequency2": "Monthly"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderItem",
    //       "referenceId": "refVirtualRouter",
    //       "body": {
    //         "OrderId": "@{refOrder.id}",
    //         "OrderActionId": "@{refOrderAction.id}",
    //         "PricebookEntryId": "{{VirtualRouterEvergrnPBE}}",
    //         "ServiceDate": "2023-01-01",
    //         "Quantity": 100,
    //         "UnitPrice": 0,
    //         "NetUnitPrice": 0,
    //         "TotalLineAmount": 0,
    //         "PeriodBoundary": "AlignToCalendar",
    //         "BillingFrequency2": "Monthly"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderItem",
    //       "referenceId": "refBronzeSLA",
    //       "body": {
    //         "OrderId": "@{refOrder.id}",
    //         "OrderActionId": "@{refOrderAction.id}",
    //         "PricebookEntryId": "{{SLABronzeEvergrnMonthPBE}}",
    //         "ServiceDate": "2023-01-01",
    //         "Quantity": 3,
    //         "UnitPrice": 0,
    //         "NetUnitPrice": 0,
    //         "TotalLineAmount": 0,
    //         "PeriodBoundary": "AlignToCalendar",
    //         "BillingFrequency2": "Monthly"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderItemRelationship",
    //       "referenceId": "refOrderItemRelationship1",
    //       "body": {
    //         "ProductRelationshipTypeId": "{{BundleProductRelationshipType}}",
    //         "MainOrderItemId": "@{refWorkAnywhereBundle.id}",
    //         "AssociatedOrderItemId": "@{refVirtualRouter.id}",
    //         "AssociatedOrderItemPricing": "IncludedInBundlePrice",
    //         "AssociatedQuantScaleMethod": "Proportional"
    //       }
    //     },
    //     {
    //       "method": "POST",
    //       "url": "/services/data/v57.0/sobjects/OrderItemRelationship",
    //       "referenceId": "refOrderItemRelationship2",
    //       "body": {
    //         "ProductRelationshipTypeId": "{{BundleProductRelationshipType}}",
    //         "MainOrderItemId": "@{refWorkAnywhereBundle.id}",
    //         "AssociatedOrderItemId": "@{refBronzeSLA.id}",
    //         "AssociatedOrderItemPricing": "IncludedInBundlePrice",
    //         "AssociatedQuantScaleMethod": "Constant"
    //       }
    //     }
    //   ]
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateBool(json,L"allOrNone",TRUE);
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].url",L"/services/data/v57.0/sobjects/Order");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].referenceId",L"refOrder");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].body.AccountId",L"{{defaultAccount}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].body.EffectiveDate",L"2023-01-01");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].body.Pricebook2Id",L"{{standardPricebook}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].body.BillToContactId",L"{{defaultBillToContact}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[0].body.Status",L"Draft");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[1].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[1].url",L"/services/data/v57.0/sobjects/AppUsageAssignment");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[1].referenceId",L"refAppTag");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[1].body.AppUsageType",L"SubscriptionManagement");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[1].body.RecordId",L"@{refOrder.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[2].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[2].url",L"/services/data/v57.0/sobjects/OrderAction");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[2].referenceId",L"refOrderAction");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[2].body.OrderId",L"@{refOrder.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[2].body.Type",L"New Sale");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].url",L"/services/data/v57.0/sobjects/OrderItem");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].referenceId",L"refWorkAnywhereBundle");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.OrderId",L"@{refOrder.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.OrderActionId",L"@{refOrderAction.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.PricebookEntryId",L"{{WorkAnywhereBundlePBE}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.ServiceDate",L"2023-01-01");
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[3].body.Quantity",1);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[3].body.UnitPrice",10000);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[3].body.NetUnitPrice",10000);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[3].body.TotalLineAmount",10000);
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.PeriodBoundary",L"AlignToCalendar");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[3].body.BillingFrequency2",L"Monthly");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].url",L"/services/data/v57.0/sobjects/OrderItem");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].referenceId",L"refVirtualRouter");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.OrderId",L"@{refOrder.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.OrderActionId",L"@{refOrderAction.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.PricebookEntryId",L"{{VirtualRouterEvergrnPBE}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.ServiceDate",L"2023-01-01");
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[4].body.Quantity",100);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[4].body.UnitPrice",0);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[4].body.NetUnitPrice",0);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[4].body.TotalLineAmount",0);
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.PeriodBoundary",L"AlignToCalendar");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[4].body.BillingFrequency2",L"Monthly");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].url",L"/services/data/v57.0/sobjects/OrderItem");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].referenceId",L"refBronzeSLA");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.OrderId",L"@{refOrder.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.OrderActionId",L"@{refOrderAction.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.PricebookEntryId",L"{{SLABronzeEvergrnMonthPBE}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.ServiceDate",L"2023-01-01");
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[5].body.Quantity",3);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[5].body.UnitPrice",0);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[5].body.NetUnitPrice",0);
    CkJsonObjectW_UpdateInt(json,L"compositeRequest[5].body.TotalLineAmount",0);
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.PeriodBoundary",L"AlignToCalendar");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[5].body.BillingFrequency2",L"Monthly");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].url",L"/services/data/v57.0/sobjects/OrderItemRelationship");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].referenceId",L"refOrderItemRelationship1");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].body.ProductRelationshipTypeId",L"{{BundleProductRelationshipType}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].body.MainOrderItemId",L"@{refWorkAnywhereBundle.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].body.AssociatedOrderItemId",L"@{refVirtualRouter.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].body.AssociatedOrderItemPricing",L"IncludedInBundlePrice");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[6].body.AssociatedQuantScaleMethod",L"Proportional");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].method",L"POST");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].url",L"/services/data/v57.0/sobjects/OrderItemRelationship");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].referenceId",L"refOrderItemRelationship2");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].body.ProductRelationshipTypeId",L"{{BundleProductRelationshipType}}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].body.MainOrderItemId",L"@{refWorkAnywhereBundle.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].body.AssociatedOrderItemId",L"@{refBronzeSLA.id}");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].body.AssociatedOrderItemPricing",L"IncludedInBundlePrice");
    CkJsonObjectW_UpdateString(json,L"compositeRequest[7].body.AssociatedQuantScaleMethod",L"Constant");

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    resp = CkHttpW_PostJson3(http,L"https://domain.com/services/data/v{{version}}/composite",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);

    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{
    "allOrNone": true,
    "compositeRequest": [
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/Order",
            "referenceId": "refOrder",
            "body": {
                "AccountId": "{{defaultAccount}}",
                "EffectiveDate": "2023-01-01",
                "Pricebook2Id": "{{standardPricebook}}",
                "BillToContactId": "{{defaultBillToContact}}",
                "Status": "Draft"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/AppUsageAssignment",
            "referenceId": "refAppTag",
            "body": {
                "AppUsageType": "SubscriptionManagement",
                "RecordId": "@{refOrder.id}"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderAction",
            "referenceId": "refOrderAction",
            "body": {
                "OrderId": "@{refOrder.id}",
                "Type": "New Sale"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderItem",
            "referenceId": "refWorkAnywhereBundle",
            "body": {
                "OrderId": "@{refOrder.id}",
                "OrderActionId": "@{refOrderAction.id}",
                "PricebookEntryId": "{{WorkAnywhereBundlePBE}}",
                "ServiceDate": "2023-01-01",
                "Quantity": 1,
                "UnitPrice": 10000,
                "NetUnitPrice": 10000,
                "TotalLineAmount": 10000,
                "PeriodBoundary": "AlignToCalendar",
                "BillingFrequency2": "Monthly"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderItem",
            "referenceId": "refVirtualRouter",
            "body": {
                "OrderId": "@{refOrder.id}",
                "OrderActionId": "@{refOrderAction.id}",
                "PricebookEntryId": "{{VirtualRouterEvergrnPBE}}",
                "ServiceDate": "2023-01-01",
                "Quantity": 100,
                "UnitPrice": 0,
                "NetUnitPrice": 0,
                "TotalLineAmount": 0,
                "PeriodBoundary": "AlignToCalendar",
                "BillingFrequency2": "Monthly"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderItem",
            "referenceId": "refBronzeSLA",
            "body": {
                "OrderId": "@{refOrder.id}",
                "OrderActionId": "@{refOrderAction.id}",
                "PricebookEntryId": "{{SLABronzeEvergrnMonthPBE}}",
                "ServiceDate": "2023-01-01",
                "Quantity": 3,
                "UnitPrice": 0,
                "NetUnitPrice": 0,
                "TotalLineAmount": 0,
                "PeriodBoundary": "AlignToCalendar",
                "BillingFrequency2": "Monthly"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderItemRelationship",
            "referenceId": "refOrderItemRelationship1",
            "body": {
                "ProductRelationshipTypeId": "{{BundleProductRelationshipType}}",
                "MainOrderItemId": "@{refWorkAnywhereBundle.id}",
                "AssociatedOrderItemId": "@{refVirtualRouter.id}",
                "AssociatedOrderItemPricing": "IncludedInBundlePrice",
                "AssociatedQuantScaleMethod": "Proportional"
            }
        },
        {
            "method": "POST",
            "url": "/services/data/v57.0/sobjects/OrderItemRelationship",
            "referenceId": "refOrderItemRelationship2",
            "body": {
                "ProductRelationshipTypeId": "{{BundleProductRelationshipType}}",
                "MainOrderItemId": "@{refWorkAnywhereBundle.id}",
                "AssociatedOrderItemId": "@{refBronzeSLA.id}",
                "AssociatedOrderItemPricing": "IncludedInBundlePrice",
                "AssociatedQuantScaleMethod": "Constant"
            }
        }
    ]
}'
https://domain.com/services/data/v{{version}}/composite

Postman Collection Item JSON

{
  "name": "Create Order With Bundle",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"allOrNone\": true,\n    \"compositeRequest\": [\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/Order\",\n            \"referenceId\": \"refOrder\",\n            \"body\": {\n                \"AccountId\": \"{{defaultAccount}}\",\n                \"EffectiveDate\": \"2023-01-01\",\n                \"Pricebook2Id\": \"{{standardPricebook}}\",\n                \"BillToContactId\": \"{{defaultBillToContact}}\",\n                \"Status\": \"Draft\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/AppUsageAssignment\",\n            \"referenceId\": \"refAppTag\",\n            \"body\": {\n                \"AppUsageType\": \"SubscriptionManagement\",\n                \"RecordId\": \"@{refOrder.id}\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderAction\",\n            \"referenceId\": \"refOrderAction\",\n            \"body\": {\n                \"OrderId\": \"@{refOrder.id}\",\n                \"Type\": \"New Sale\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderItem\",\n            \"referenceId\": \"refWorkAnywhereBundle\",\n            \"body\": {\n                \"OrderId\": \"@{refOrder.id}\",\n                \"OrderActionId\": \"@{refOrderAction.id}\",\n                \"PricebookEntryId\": \"{{WorkAnywhereBundlePBE}}\",\n                \"ServiceDate\": \"2023-01-01\",\n                \"Quantity\": 1,\n                \"UnitPrice\": 10000,\n                \"NetUnitPrice\": 10000,\n                \"TotalLineAmount\": 10000,\n                \"PeriodBoundary\": \"AlignToCalendar\",\n                \"BillingFrequency2\": \"Monthly\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderItem\",\n            \"referenceId\": \"refVirtualRouter\",\n            \"body\": {\n                \"OrderId\": \"@{refOrder.id}\",\n                \"OrderActionId\": \"@{refOrderAction.id}\",\n                \"PricebookEntryId\": \"{{VirtualRouterEvergrnPBE}}\",\n                \"ServiceDate\": \"2023-01-01\",\n                \"Quantity\": 100,\n                \"UnitPrice\": 0,\n                \"NetUnitPrice\": 0,\n                \"TotalLineAmount\": 0,\n                \"PeriodBoundary\": \"AlignToCalendar\",\n                \"BillingFrequency2\": \"Monthly\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderItem\",\n            \"referenceId\": \"refBronzeSLA\",\n            \"body\": {\n                \"OrderId\": \"@{refOrder.id}\",\n                \"OrderActionId\": \"@{refOrderAction.id}\",\n                \"PricebookEntryId\": \"{{SLABronzeEvergrnMonthPBE}}\",\n                \"ServiceDate\": \"2023-01-01\",\n                \"Quantity\": 3,\n                \"UnitPrice\": 0,\n                \"NetUnitPrice\": 0,\n                \"TotalLineAmount\": 0,\n                \"PeriodBoundary\": \"AlignToCalendar\",\n                \"BillingFrequency2\": \"Monthly\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderItemRelationship\",\n            \"referenceId\": \"refOrderItemRelationship1\",\n            \"body\": {\n                \"ProductRelationshipTypeId\": \"{{BundleProductRelationshipType}}\",\n                \"MainOrderItemId\": \"@{refWorkAnywhereBundle.id}\",\n                \"AssociatedOrderItemId\": \"@{refVirtualRouter.id}\",\n                \"AssociatedOrderItemPricing\": \"IncludedInBundlePrice\",\n                \"AssociatedQuantScaleMethod\": \"Proportional\"\n            }\n        },\n        {\n            \"method\": \"POST\",\n            \"url\": \"/services/data/v57.0/sobjects/OrderItemRelationship\",\n            \"referenceId\": \"refOrderItemRelationship2\",\n            \"body\": {\n                \"ProductRelationshipTypeId\": \"{{BundleProductRelationshipType}}\",\n                \"MainOrderItemId\": \"@{refWorkAnywhereBundle.id}\",\n                \"AssociatedOrderItemId\": \"@{refBronzeSLA.id}\",\n                \"AssociatedOrderItemPricing\": \"IncludedInBundlePrice\",\n                \"AssociatedQuantScaleMethod\": \"Constant\"\n            }\n        }\n    ]\n}\n",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/composite",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "composite"
      ]
    },
    "description": "Creates a Subscription Management order for a product bundle."
  },
  "response": [
  ]
}