Chilkat Online Tools

SQL Server / Zoho CRM REST APIs / Products

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
    -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
    EXEC @hr = sp_OACreate 'Chilkat.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.

    -- {
    --   "data": [
    --     {
    --       "Product_Category": "Hardware",
    --       "Description": "This is a sample product",
    --       "Vendor_Name": {
    --         "name": "Vendor2",
    --         "id": "{{vendor_id}}"
    --       },
    --       "Tax": [
    --         "Vat - 5.0 %"
    --       ],
    --       "Sales_Start_Date": "2021-01-22",
    --       "Subproducts": [
    --         {
    --           "Discount": null,
    --           "Rate": 20,
    --           "Amount": 20,
    --           "Parent_Id": {
    --             "name": "Sample Product1",
    --             "id": "{{product_id}}"
    --           },
    --           "Quantity": 1,
    --           "id": "4150868000004382023",
    --           "Vendor": {
    --             "name": "Zylker",
    --             "id": "{{vendor_id}}"
    --           },
    --           "Add_on_name": {
    --             "name": "Sample 2",
    --             "id": "4150868000003278032"
    --           }
    --         }
    --       ],
    --       "Manufacturer": "AltvetPet Inc.",
    --       "Support_Expiry_Date": "2021-01-31",
    --       "Product_Name": "Sample Product1",
    --       "Support_Start_Date": "2021-01-23",
    --       "Usage_Unit": "Box",
    --       "Qty_Ordered": 12,
    --       "Qty_in_Stock": 20,
    --       "Sales_End_Date": "2021-01-31",
    --       "Unit_Price": 100
    --     }
    --   ]
    -- }

    DECLARE @json int
    -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Product_Category', 'Hardware'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Description', 'This is a sample product'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Vendor_Name.name', 'Vendor2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Vendor_Name.id', '{{vendor_id}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Tax[0]', 'Vat - 5.0 %'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Sales_Start_Date', '2021-01-22'
    EXEC sp_OAMethod @json, 'UpdateNull', @success OUT, 'data[0].Subproducts[0].Discount'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Subproducts[0].Rate', 20
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Subproducts[0].Amount', 20
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Parent_Id.name', 'Sample Product1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Parent_Id.id', '{{product_id}}'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Subproducts[0].Quantity', 1
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].id', '4150868000004382023'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Vendor.name', 'Zylker'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Vendor.id', '{{vendor_id}}'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Add_on_name.name', 'Sample 2'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Subproducts[0].Add_on_name.id', '4150868000003278032'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Manufacturer', 'AltvetPet Inc.'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Support_Expiry_Date', '2021-01-31'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Product_Name', 'Sample Product1'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Support_Start_Date', '2021-01-23'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Usage_Unit', 'Box'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Qty_Ordered', 12
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Qty_in_Stock', 20
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Sales_End_Date', '2021-01-31'
    EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Unit_Price', 100

    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/crm/v2/Products/upsert', '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>"
	-d '{
    "data": [
        {
            "Product_Category": "Hardware",
            "Description": "This is a sample product",
            "Vendor_Name": {
                "name": "Vendor2",
                "id": "{{vendor_id}}"
            },
            "Tax": [
                "Vat - 5.0 %"
            ],
            "Sales_Start_Date": "2021-01-22",
            "Subproducts": [
                {
                    "Discount": null,
                    "Rate": 20,
                    "Amount": 20,
                    "Parent_Id": {
                        "name": "Sample Product1",
                        "id": "{{product_id}}"
                    },
                    "Quantity": 1,
                    "id": "4150868000004382023",
                    "Vendor": {
                        "name": "Zylker",
                        "id": "{{vendor_id}}"
                    },
                    "Add_on_name": {
                        "name": "Sample 2",
                        "id": "4150868000003278032"
                    }
                }
            ],
            "Manufacturer": "AltvetPet Inc.",
            "Support_Expiry_Date": "2021-01-31",
            "Product_Name": "Sample Product1",
            "Support_Start_Date": "2021-01-23",
            "Usage_Unit": "Box",
            "Qty_Ordered": 12,
            "Qty_in_Stock": 20,
            "Sales_End_Date": "2021-01-31",
            "Unit_Price": 100
        }
    ]
}'
https://domain.com/crm/v2/Products/upsert

Postman Collection Item JSON

{
  "name": "Products",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"data\": [\n        {\n            \"Product_Category\": \"Hardware\",\n            \"Description\": \"This is a sample product\",\n            \"Vendor_Name\": {\n                \"name\": \"Vendor2\",\n                \"id\": \"{{vendor_id}}\"\n            },\n            \"Tax\": [\n                \"Vat - 5.0 %\"\n            ],\n            \"Sales_Start_Date\": \"2021-01-22\",\n            \"Subproducts\": [\n                {\n                    \"Discount\": null,\n                    \"Rate\": 20,\n                    \"Amount\": 20,\n                    \"Parent_Id\": {\n                        \"name\": \"Sample Product1\",\n                        \"id\": \"{{product_id}}\"\n                    },\n                    \"Quantity\": 1,\n                    \"id\": \"4150868000004382023\",\n                    \"Vendor\": {\n                        \"name\": \"Zylker\",\n                        \"id\": \"{{vendor_id}}\"\n                    },\n                    \"Add_on_name\": {\n                        \"name\": \"Sample 2\",\n                        \"id\": \"4150868000003278032\"\n                    }\n                }\n            ],\n            \"Manufacturer\": \"AltvetPet Inc.\",\n            \"Support_Expiry_Date\": \"2021-01-31\",\n            \"Product_Name\": \"Sample Product1\",\n            \"Support_Start_Date\": \"2021-01-23\",\n            \"Usage_Unit\": \"Box\",\n            \"Qty_Ordered\": 12,\n            \"Qty_in_Stock\": 20,\n            \"Sales_End_Date\": \"2021-01-31\",\n            \"Unit_Price\": 100\n        }\n    ]\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2/Products/upsert",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Products",
        "upsert"
      ]
    },
    "description": "To upsert records in the Products module. "
  },
  "response": [
  ]
}