Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(SQL Server) Shopify Add a metafield to an existing product

Add a metafield to an existing product

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// 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
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @rest int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Rest', @rest OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    EXEC sp_OAMethod @rest, 'SetAuthBasic', @success OUT, 'SHOPIFY_PRIVATE_API_KEY', 'SHOPIFY_PRIVATE_API_KEY'

    EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'chilkat.myshopify.com', 443, 1, 1
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        RETURN
      END

    -- The following code creates the JSON request body.
    -- The JSON created by this code is shown below.
    DECLARE @jsonReq int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jsonReq OUT

    EXEC sp_OAMethod @jsonReq, 'UpdateNumber', @success OUT, 'product.id', '632910392'
    EXEC sp_OAMethod @jsonReq, 'UpdateString', @success OUT, 'product.metafields[0].key', 'new'
    EXEC sp_OAMethod @jsonReq, 'UpdateString', @success OUT, 'product.metafields[0].value', 'newvalue'
    EXEC sp_OAMethod @jsonReq, 'UpdateString', @success OUT, 'product.metafields[0].value_type', 'string'
    EXEC sp_OAMethod @jsonReq, 'UpdateString', @success OUT, 'product.metafields[0].namespace', 'global'

    -- The JSON request body created by the above code:

    -- {
    --   "product": {
    --     "id": 632910392,
    --     "metafields": [
    --       {
    --         "key": "new",
    --         "value": "newvalue",
    --         "value_type": "string",
    --         "namespace": "global"
    --       }
    --     ]
    --   }
    -- }

    DECLARE @sbReq int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbReq OUT

    EXEC sp_OAMethod @jsonReq, 'EmitSb', @success OUT, @sbReq

    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Content-Type', 'application/json'

    DECLARE @sbJson int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbJson OUT

    EXEC sp_OAMethod @rest, 'FullRequestSb', @success OUT, 'PUT', '/admin/products/#{id}.json', @sbReq, @sbJson
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @jsonReq
        EXEC @hr = sp_OADestroy @sbReq
        EXEC @hr = sp_OADestroy @sbJson
        RETURN
      END

    EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
    IF @iTmp0 <> 200
      BEGIN

        EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
        PRINT 'Received error response code: ' + @iTmp0

        PRINT 'Response body:'
        EXEC sp_OAMethod @sbJson, 'GetAsString', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @jsonReq
        EXEC @hr = sp_OADestroy @sbReq
        EXEC @hr = sp_OADestroy @sbJson
        RETURN
      END

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

    EXEC sp_OAMethod @json, 'LoadSb', @success OUT, @sbJson

    -- The following code parses the JSON response.
    -- A sample JSON response is shown below the sample code.
    DECLARE @productId int

    DECLARE @productTitle nvarchar(4000)

    DECLARE @productBody_html nvarchar(4000)

    DECLARE @productVendor nvarchar(4000)

    DECLARE @productProduct_type nvarchar(4000)

    DECLARE @productCreated_at nvarchar(4000)

    DECLARE @productHandle nvarchar(4000)

    DECLARE @productUpdated_at nvarchar(4000)

    DECLARE @productPublished_at nvarchar(4000)

    DECLARE @productTemplate_suffix int

    DECLARE @productPublished_scope nvarchar(4000)

    DECLARE @productTags nvarchar(4000)

    DECLARE @productImageId int

    DECLARE @productImageProduct_id int

    DECLARE @productImagePosition int

    DECLARE @productImageCreated_at nvarchar(4000)

    DECLARE @productImageUpdated_at nvarchar(4000)

    DECLARE @productImageWidth int

    DECLARE @productImageHeight int

    DECLARE @productImageSrc nvarchar(4000)

    DECLARE @i int

    DECLARE @count_i int

    DECLARE @id int

    DECLARE @product_id int

    DECLARE @title nvarchar(4000)

    DECLARE @price nvarchar(4000)

    DECLARE @sku nvarchar(4000)

    DECLARE @position int

    DECLARE @grams int

    DECLARE @inventory_policy nvarchar(4000)

    DECLARE @compare_at_price int

    DECLARE @fulfillment_service nvarchar(4000)

    DECLARE @inventory_management nvarchar(4000)

    DECLARE @option1 nvarchar(4000)

    DECLARE @option2 int

    DECLARE @option3 int

    DECLARE @created_at nvarchar(4000)

    DECLARE @updated_at nvarchar(4000)

    DECLARE @taxable int

    DECLARE @barcode nvarchar(4000)

    DECLARE @image_id int

    DECLARE @inventory_quantity int

    DECLARE @weight int

    DECLARE @weight_unit nvarchar(4000)

    DECLARE @old_inventory_quantity int

    DECLARE @requires_shipping int

    DECLARE @name nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @strVal nvarchar(4000)

    DECLARE @width int

    DECLARE @height int

    DECLARE @src nvarchar(4000)

    DECLARE @intVal int

    EXEC sp_OAMethod @json, 'IntOf', @productId OUT, 'product.id'
    EXEC sp_OAMethod @json, 'StringOf', @productTitle OUT, 'product.title'
    EXEC sp_OAMethod @json, 'StringOf', @productBody_html OUT, 'product.body_html'
    EXEC sp_OAMethod @json, 'StringOf', @productVendor OUT, 'product.vendor'
    EXEC sp_OAMethod @json, 'StringOf', @productProduct_type OUT, 'product.product_type'
    EXEC sp_OAMethod @json, 'StringOf', @productCreated_at OUT, 'product.created_at'
    EXEC sp_OAMethod @json, 'StringOf', @productHandle OUT, 'product.handle'
    EXEC sp_OAMethod @json, 'StringOf', @productUpdated_at OUT, 'product.updated_at'
    EXEC sp_OAMethod @json, 'StringOf', @productPublished_at OUT, 'product.published_at'
    EXEC sp_OAMethod @json, 'IsNullOf', @productTemplate_suffix OUT, 'product.template_suffix'
    EXEC sp_OAMethod @json, 'StringOf', @productPublished_scope OUT, 'product.published_scope'
    EXEC sp_OAMethod @json, 'StringOf', @productTags OUT, 'product.tags'
    EXEC sp_OAMethod @json, 'IntOf', @productImageId OUT, 'product.image.id'
    EXEC sp_OAMethod @json, 'IntOf', @productImageProduct_id OUT, 'product.image.product_id'
    EXEC sp_OAMethod @json, 'IntOf', @productImagePosition OUT, 'product.image.position'
    EXEC sp_OAMethod @json, 'StringOf', @productImageCreated_at OUT, 'product.image.created_at'
    EXEC sp_OAMethod @json, 'StringOf', @productImageUpdated_at OUT, 'product.image.updated_at'
    EXEC sp_OAMethod @json, 'IntOf', @productImageWidth OUT, 'product.image.width'
    EXEC sp_OAMethod @json, 'IntOf', @productImageHeight OUT, 'product.image.height'
    EXEC sp_OAMethod @json, 'StringOf', @productImageSrc OUT, 'product.image.src'
    SELECT @i = 0
    EXEC sp_OAMethod @json, 'SizeOfArray', @count_i OUT, 'product.variants'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @json, 'I', @i
        EXEC sp_OAMethod @json, 'IntOf', @id OUT, 'product.variants[i].id'
        EXEC sp_OAMethod @json, 'IntOf', @product_id OUT, 'product.variants[i].product_id'
        EXEC sp_OAMethod @json, 'StringOf', @title OUT, 'product.variants[i].title'
        EXEC sp_OAMethod @json, 'StringOf', @price OUT, 'product.variants[i].price'
        EXEC sp_OAMethod @json, 'StringOf', @sku OUT, 'product.variants[i].sku'
        EXEC sp_OAMethod @json, 'IntOf', @position OUT, 'product.variants[i].position'
        EXEC sp_OAMethod @json, 'IntOf', @grams OUT, 'product.variants[i].grams'
        EXEC sp_OAMethod @json, 'StringOf', @inventory_policy OUT, 'product.variants[i].inventory_policy'
        EXEC sp_OAMethod @json, 'IsNullOf', @compare_at_price OUT, 'product.variants[i].compare_at_price'
        EXEC sp_OAMethod @json, 'StringOf', @fulfillment_service OUT, 'product.variants[i].fulfillment_service'
        EXEC sp_OAMethod @json, 'StringOf', @inventory_management OUT, 'product.variants[i].inventory_management'
        EXEC sp_OAMethod @json, 'StringOf', @option1 OUT, 'product.variants[i].option1'
        EXEC sp_OAMethod @json, 'IsNullOf', @option2 OUT, 'product.variants[i].option2'
        EXEC sp_OAMethod @json, 'IsNullOf', @option3 OUT, 'product.variants[i].option3'
        EXEC sp_OAMethod @json, 'StringOf', @created_at OUT, 'product.variants[i].created_at'
        EXEC sp_OAMethod @json, 'StringOf', @updated_at OUT, 'product.variants[i].updated_at'
        EXEC sp_OAMethod @json, 'BoolOf', @taxable OUT, 'product.variants[i].taxable'
        EXEC sp_OAMethod @json, 'StringOf', @barcode OUT, 'product.variants[i].barcode'
        EXEC sp_OAMethod @json, 'IntOf', @image_id OUT, 'product.variants[i].image_id'
        EXEC sp_OAMethod @json, 'IntOf', @inventory_quantity OUT, 'product.variants[i].inventory_quantity'
        EXEC sp_OAMethod @json, 'IntOf', @weight OUT, 'product.variants[i].weight'
        EXEC sp_OAMethod @json, 'StringOf', @weight_unit OUT, 'product.variants[i].weight_unit'
        EXEC sp_OAMethod @json, 'IntOf', @old_inventory_quantity OUT, 'product.variants[i].old_inventory_quantity'
        EXEC sp_OAMethod @json, 'BoolOf', @requires_shipping OUT, 'product.variants[i].requires_shipping'
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @json, 'SizeOfArray', @count_i OUT, 'product.options'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @json, 'I', @i
        EXEC sp_OAMethod @json, 'IntOf', @id OUT, 'product.options[i].id'
        EXEC sp_OAMethod @json, 'IntOf', @product_id OUT, 'product.options[i].product_id'
        EXEC sp_OAMethod @json, 'StringOf', @name OUT, 'product.options[i].name'
        EXEC sp_OAMethod @json, 'IntOf', @position OUT, 'product.options[i].position'
        SELECT @j = 0
        EXEC sp_OAMethod @json, 'SizeOfArray', @count_j OUT, 'product.options[i].values'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @json, 'J', @j
            EXEC sp_OAMethod @json, 'StringOf', @strVal OUT, 'product.options[i].values[j]'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @json, 'SizeOfArray', @count_i OUT, 'product.images'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @json, 'I', @i
        EXEC sp_OAMethod @json, 'IntOf', @id OUT, 'product.images[i].id'
        EXEC sp_OAMethod @json, 'IntOf', @product_id OUT, 'product.images[i].product_id'
        EXEC sp_OAMethod @json, 'IntOf', @position OUT, 'product.images[i].position'
        EXEC sp_OAMethod @json, 'StringOf', @created_at OUT, 'product.images[i].created_at'
        EXEC sp_OAMethod @json, 'StringOf', @updated_at OUT, 'product.images[i].updated_at'
        EXEC sp_OAMethod @json, 'IntOf', @width OUT, 'product.images[i].width'
        EXEC sp_OAMethod @json, 'IntOf', @height OUT, 'product.images[i].height'
        EXEC sp_OAMethod @json, 'StringOf', @src OUT, 'product.images[i].src'
        SELECT @j = 0
        EXEC sp_OAMethod @json, 'SizeOfArray', @count_j OUT, 'product.images[i].variant_ids'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @json, 'J', @j
            EXEC sp_OAMethod @json, 'IntOf', @intVal OUT, 'product.images[i].variant_ids[j]'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @json, 'SizeOfArray', @count_i OUT, 'image.product.variant_ids'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @json, 'I', @i
        SELECT @i = @i + 1
      END

    -- A sample JSON response body that is parsed by the above code:

    -- {
    --   "product": {
    --     "id": 632910392,
    --     "title": "IPod Nano - 8GB",
    --     "body_html": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.<\/p>",
    --     "vendor": "Apple",
    --     "product_type": "Cult Products",
    --     "created_at": "2017-09-22T14:08:02-04:00",
    --     "handle": "ipod-nano",
    --     "updated_at": "2017-09-22T14:48:57-04:00",
    --     "published_at": "2007-12-31T19:00:00-05:00",
    --     "template_suffix": null,
    --     "published_scope": "web",
    --     "tags": "Emotive, Flash Memory, MP3, Music",
    --     "variants": [
    --       {
    --         "id": 808950810,
    --         "product_id": 632910392,
    --         "title": "Pink",
    --         "price": "199.00",
    --         "sku": "IPOD2008PINK",
    --         "position": 1,
    --         "grams": 567,
    --         "inventory_policy": "continue",
    --         "compare_at_price": null,
    --         "fulfillment_service": "manual",
    --         "inventory_management": "shopify",
    --         "option1": "Pink",
    --         "option2": null,
    --         "option3": null,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:48:57-04:00",
    --         "taxable": true,
    --         "barcode": "1234_pink",
    --         "image_id": 562641783,
    --         "inventory_quantity": 10,
    --         "weight": 1.25,
    --         "weight_unit": "lb",
    --         "old_inventory_quantity": 10,
    --         "requires_shipping": true
    --       },
    --       {
    --         "id": 49148385,
    --         "product_id": 632910392,
    --         "title": "Red",
    --         "price": "199.00",
    --         "sku": "IPOD2008RED",
    --         "position": 2,
    --         "grams": 567,
    --         "inventory_policy": "continue",
    --         "compare_at_price": null,
    --         "fulfillment_service": "manual",
    --         "inventory_management": "shopify",
    --         "option1": "Red",
    --         "option2": null,
    --         "option3": null,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:08:02-04:00",
    --         "taxable": true,
    --         "barcode": "1234_red",
    --         "image_id": null,
    --         "inventory_quantity": 20,
    --         "weight": 1.25,
    --         "weight_unit": "lb",
    --         "old_inventory_quantity": 20,
    --         "requires_shipping": true
    --       },
    --       {
    --         "id": 39072856,
    --         "product_id": 632910392,
    --         "title": "Green",
    --         "price": "199.00",
    --         "sku": "IPOD2008GREEN",
    --         "position": 3,
    --         "grams": 567,
    --         "inventory_policy": "continue",
    --         "compare_at_price": null,
    --         "fulfillment_service": "manual",
    --         "inventory_management": "shopify",
    --         "option1": "Green",
    --         "option2": null,
    --         "option3": null,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:08:02-04:00",
    --         "taxable": true,
    --         "barcode": "1234_green",
    --         "image_id": null,
    --         "inventory_quantity": 30,
    --         "weight": 1.25,
    --         "weight_unit": "lb",
    --         "old_inventory_quantity": 30,
    --         "requires_shipping": true
    --       },
    --       {
    --         "id": 457924702,
    --         "product_id": 632910392,
    --         "title": "Black",
    --         "price": "199.00",
    --         "sku": "IPOD2008BLACK",
    --         "position": 4,
    --         "grams": 567,
    --         "inventory_policy": "continue",
    --         "compare_at_price": null,
    --         "fulfillment_service": "manual",
    --         "inventory_management": "shopify",
    --         "option1": "Black",
    --         "option2": null,
    --         "option3": null,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:08:02-04:00",
    --         "taxable": true,
    --         "barcode": "1234_black",
    --         "image_id": null,
    --         "inventory_quantity": 40,
    --         "weight": 1.25,
    --         "weight_unit": "lb",
    --         "old_inventory_quantity": 40,
    --         "requires_shipping": true
    --       }
    --     ],
    --     "options": [
    --       {
    --         "id": 594680422,
    --         "product_id": 632910392,
    --         "name": "Color",
    --         "position": 1,
    --         "values": [
    --           "Pink",
    --           "Red",
    --           "Green",
    --           "Black"
    --         ]
    --       }
    --     ],
    --     "images": [
    --       {
    --         "id": 850703190,
    --         "product_id": 632910392,
    --         "position": 1,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:08:02-04:00",
    --         "width": 123,
    --         "height": 456,
    --         "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano.png?v=1506103682",
    --         "variant_ids": [
    --         ]
    --       },
    --       {
    --         "id": 562641783,
    --         "product_id": 632910392,
    --         "position": 2,
    --         "created_at": "2017-09-22T14:08:02-04:00",
    --         "updated_at": "2017-09-22T14:08:02-04:00",
    --         "width": 123,
    --         "height": 456,
    --         "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano-2.png?v=1506103682",
    --         "variant_ids": [
    --           808950810
    --         ]
    --       }
    --     ],
    --     "image": {
    --       "id": 850703190,
    --       "product_id": 632910392,
    --       "position": 1,
    --       "created_at": "2017-09-22T14:08:02-04:00",
    --       "updated_at": "2017-09-22T14:08:02-04:00",
    --       "width": 123,
    --       "height": 456,
    --       "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/products\/ipod-nano.png?v=1506103682",
    --       "variant_ids": [
    --       ]
    --     }
    --   }
    -- }


    PRINT 'Example Completed.'

    EXEC @hr = sp_OADestroy @rest
    EXEC @hr = sp_OADestroy @jsonReq
    EXEC @hr = sp_OADestroy @sbReq
    EXEC @hr = sp_OADestroy @sbJson
    EXEC @hr = sp_OADestroy @json


END
GO

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.