Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) Lightspeed - Create a ProductCreate a new product based on the given parameters. For more information, see https://developers.lightspeedhq.com/ecom/endpoints/product/#post-create-a-product
LOCAL loHttp LOCAL lnSuccess LOCAL loJson LOCAL loResp LOCAL loSbResponseBody LOCAL loJResp LOCAL lnRespStatusCode LOCAL lnProductId LOCAL lcProductCreatedAt LOCAL lcProductUpdatedAt LOCAL lnProductIsVisible LOCAL lcProductVisibility LOCAL lnProductHasMatrix LOCAL lcProductData01 LOCAL lcProductData02 LOCAL lcProductData03 LOCAL lcProductUrl LOCAL lcProductTitle LOCAL lcProductFulltitle LOCAL lcProductDescription LOCAL lcProductContent LOCAL lnProductSet LOCAL lnProductBrandResourceId LOCAL lcProductBrandResourceUrl LOCAL lcProductBrandResourceLink LOCAL lnProductCategoriesResourceId LOCAL lcProductCategoriesResourceUrl LOCAL lcProductCategoriesResourceLink LOCAL lnProductDeliverydateResourceId LOCAL lcProductDeliverydateResourceUrl LOCAL lcProductDeliverydateResourceLink LOCAL lnProductImage LOCAL lnProductImages LOCAL lnProductRelationsResourceId LOCAL lcProductRelationsResourceUrl LOCAL lcProductRelationsResourceLink LOCAL lnProductMetafieldsResourceId LOCAL lcProductMetafieldsResourceUrl LOCAL lcProductMetafieldsResourceLink LOCAL lnProductReviewsResourceId LOCAL lcProductReviewsResourceUrl LOCAL lcProductReviewsResourceLink LOCAL lnProductType LOCAL lnProductAttributesResourceId LOCAL lcProductAttributesResourceUrl LOCAL lcProductAttributesResourceLink LOCAL lnProductSupplierResourceId LOCAL lcProductSupplierResourceUrl LOCAL lcProductSupplierResourceLink LOCAL lnProductTagsResourceId LOCAL lcProductTagsResourceUrl LOCAL lcProductTagsResourceLink LOCAL lnProductVariantsResourceId LOCAL lcProductVariantsResourceUrl LOCAL lcProductVariantsResourceLink LOCAL lnProductMovementsResourceId LOCAL lcProductMovementsResourceUrl LOCAL lcProductMovementsResourceLink * This example assumes the Chilkat API to have been previously unlocked. * See Global Unlock Sample for sample code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') * Implements the following CURL command: * curl -u API_KEY:API_SECRET \ * -H "Content-Type: application/json" \ * -X POST \ * -d '{ * "product": { * "visibility": "visible", * "data01": "", * "data02": "", * "data03": "", * "title": "Lookin Sharp T-Shirt", * "fulltitle": "Lookin Sharp T-Shirt", * "description": "Description of the Lookin Sharp T-Shirt", * "content": "Long Description of the Lookin Sharp T-Shirt", * "deliverydate": 6488, * "supplier": 78794, * "brand": 1171202 * } * }' \ * "https://api.webshopapp.com/en/products.json" * Use the following online tool to generate HTTP code from a CURL command * Convert a cURL Command to HTTP Source Code loHttp.Login = "API_KEY" loHttp.Password = "API_SECRET" * Use this online tool to generate code from sample JSON: * Generate Code to Create JSON * The following JSON is sent in the request body. * { * "product": { * "visibility": "visible", * "data01": "", * "data02": "", * "data03": "", * "title": "Lookin Sharp T-Shirt", * "fulltitle": "Lookin Sharp T-Shirt", * "description": "Description of the Lookin Sharp T-Shirt", * "content": "Long Description of the Lookin Sharp T-Shirt", * "deliverydate": 6488, * "supplier": 78794, * "brand": 1171202 * } * } * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject') loJson = CreateObject('Chilkat.JsonObject') loJson.UpdateString("product.visibility","visible") loJson.UpdateString("product.data01","") loJson.UpdateString("product.data02","") loJson.UpdateString("product.data03","") loJson.UpdateString("product.title","Lookin Sharp T-Shirt") loJson.UpdateString("product.fulltitle","Lookin Sharp T-Shirt") loJson.UpdateString("product.description","Description of the Lookin Sharp T-Shirt") loJson.UpdateString("product.content","Long Description of the Lookin Sharp T-Shirt") loJson.UpdateInt("product.deliverydate",6488) loJson.UpdateInt("product.supplier",78794) loJson.UpdateInt("product.brand",1171202) loHttp.SetRequestHeader("Content-Type","application/json") * Use the correct cluster for your shop. Here are the choices: * eu1 https://api.webshopapp.com/en/ * us1 https://api.shoplightspeed.com/en/ loResp = loHttp.PostJson3("https://api.webshopapp.com/en/products.json","application/json",loJson) IF (loHttp.LastMethodSuccess = 0) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loJson CANCEL ENDIF * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbResponseBody = CreateObject('Chilkat.StringBuilder') loResp.GetBodySb(loSbResponseBody) * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject') loJResp = CreateObject('Chilkat.JsonObject') loJResp.LoadSb(loSbResponseBody) loJResp.EmitCompact = 0 ? "Response Body:" ? loJResp.Emit() lnRespStatusCode = loResp.StatusCode ? "Response Status Code = " + STR(lnRespStatusCode) IF (lnRespStatusCode >= 400) THEN ? "Response Header:" ? loResp.Header ? "Failed." RELEASE loResp RELEASE loHttp RELEASE loJson RELEASE loSbResponseBody RELEASE loJResp CANCEL ENDIF RELEASE loResp * Sample JSON response: * (Sample code for parsing the JSON response is shown below) * { * "product": { * "id": 20974460, * "createdAt": "2019-05-28T20:14:26+00:00", * "updatedAt": "2019-05-28T20:14:26+00:00", * "isVisible": true, * "visibility": "visible", * "hasMatrix": false, * "data01": "", * "data02": "", * "data03": "", * "url": "lookin-sharp-t-shirt", * "title": "Lookin' Sharp T-Shirt", * "fulltitle": "Lookin' Sharp T-Shirt", * "description": "Description of the Lookin' Sharp T-Shirt", * "content": "<p>Long Description of the Lookin' Sharp T-Shirt</p>", * "set": false, * "brand": { * "resource": { * "id": 1171202, * "url": "brands/1171202", * "link": "https://api.shoplightspeed.com/us/brands/1171202.json" * } * }, * "categories": { * "resource": { * "id": false, * "url": "categories/products?product=20974460", * "link": "https://api.shoplightspeed.com/us/categories/products.json?product=20974460" * } * }, * "deliverydate": { * "resource": { * "id": 6488, * "url": "deliverydates/6488", * "link": "https://api.shoplightspeed.com/us/deliverydates/6488.json" * } * }, * "image": false, * "images": false, * "relations": { * "resource": { * "id": false, * "url": "products/20974460/relations", * "link": "https://api.shoplightspeed.com/us/products/20974460/relations.json" * } * }, * "metafields": { * "resource": { * "id": false, * "url": "products/20974460/metafields", * "link": "https://api.shoplightspeed.com/us/products/20974460/metafields.json" * } * }, * "reviews": { * "resource": { * "id": false, * "url": "reviews?product=20974460", * "link": "https://api.shoplightspeed.com/us/reviews.json?product=20974460" * } * }, * "type": false, * "attributes": { * "resource": { * "id": false, * "url": "products/20974460/attributes", * "link": "https://api.shoplightspeed.com/us/products/20974460/attributes.json" * } * }, * "supplier": { * "resource": { * "id": 78794, * "url": "suppliers/78794", * "link": "https://api.shoplightspeed.com/us/suppliers/78794.json" * } * }, * "tags": { * "resource": { * "id": false, * "url": "tags/products?product=20974460", * "link": "https://api.shoplightspeed.com/us/tags/products.json?product=20974460" * } * }, * "variants": { * "resource": { * "id": false, * "url": "variants?product=20974460", * "link": "https://api.shoplightspeed.com/us/variants.json?product=20974460" * } * }, * "movements": { * "resource": { * "id": false, * "url": "variants/movements?product=20974460", * "link": "https://api.shoplightspeed.com/us/variants/movements.json?product=20974460" * } * } * } * } * Sample code for parsing the JSON response... * Use the following online tool to generate parsing code from sample JSON: * Generate Parsing Code from JSON lnProductId = loJResp.IntOf("product.id") lcProductCreatedAt = loJResp.StringOf("product.createdAt") lcProductUpdatedAt = loJResp.StringOf("product.updatedAt") lnProductIsVisible = loJResp.BoolOf("product.isVisible") lcProductVisibility = loJResp.StringOf("product.visibility") lnProductHasMatrix = loJResp.BoolOf("product.hasMatrix") lcProductData01 = loJResp.StringOf("product.data01") lcProductData02 = loJResp.StringOf("product.data02") lcProductData03 = loJResp.StringOf("product.data03") lcProductUrl = loJResp.StringOf("product.url") lcProductTitle = loJResp.StringOf("product.title") lcProductFulltitle = loJResp.StringOf("product.fulltitle") lcProductDescription = loJResp.StringOf("product.description") lcProductContent = loJResp.StringOf("product.content") lnProductSet = loJResp.BoolOf("product.set") lnProductBrandResourceId = loJResp.IntOf("product.brand.resource.id") lcProductBrandResourceUrl = loJResp.StringOf("product.brand.resource.url") lcProductBrandResourceLink = loJResp.StringOf("product.brand.resource.link") lnProductCategoriesResourceId = loJResp.BoolOf("product.categories.resource.id") lcProductCategoriesResourceUrl = loJResp.StringOf("product.categories.resource.url") lcProductCategoriesResourceLink = loJResp.StringOf("product.categories.resource.link") lnProductDeliverydateResourceId = loJResp.IntOf("product.deliverydate.resource.id") lcProductDeliverydateResourceUrl = loJResp.StringOf("product.deliverydate.resource.url") lcProductDeliverydateResourceLink = loJResp.StringOf("product.deliverydate.resource.link") lnProductImage = loJResp.BoolOf("product.image") lnProductImages = loJResp.BoolOf("product.images") lnProductRelationsResourceId = loJResp.BoolOf("product.relations.resource.id") lcProductRelationsResourceUrl = loJResp.StringOf("product.relations.resource.url") lcProductRelationsResourceLink = loJResp.StringOf("product.relations.resource.link") lnProductMetafieldsResourceId = loJResp.BoolOf("product.metafields.resource.id") lcProductMetafieldsResourceUrl = loJResp.StringOf("product.metafields.resource.url") lcProductMetafieldsResourceLink = loJResp.StringOf("product.metafields.resource.link") lnProductReviewsResourceId = loJResp.BoolOf("product.reviews.resource.id") lcProductReviewsResourceUrl = loJResp.StringOf("product.reviews.resource.url") lcProductReviewsResourceLink = loJResp.StringOf("product.reviews.resource.link") lnProductType = loJResp.BoolOf("product.type") lnProductAttributesResourceId = loJResp.BoolOf("product.attributes.resource.id") lcProductAttributesResourceUrl = loJResp.StringOf("product.attributes.resource.url") lcProductAttributesResourceLink = loJResp.StringOf("product.attributes.resource.link") lnProductSupplierResourceId = loJResp.IntOf("product.supplier.resource.id") lcProductSupplierResourceUrl = loJResp.StringOf("product.supplier.resource.url") lcProductSupplierResourceLink = loJResp.StringOf("product.supplier.resource.link") lnProductTagsResourceId = loJResp.BoolOf("product.tags.resource.id") lcProductTagsResourceUrl = loJResp.StringOf("product.tags.resource.url") lcProductTagsResourceLink = loJResp.StringOf("product.tags.resource.link") lnProductVariantsResourceId = loJResp.BoolOf("product.variants.resource.id") lcProductVariantsResourceUrl = loJResp.StringOf("product.variants.resource.url") lcProductVariantsResourceLink = loJResp.StringOf("product.variants.resource.link") lnProductMovementsResourceId = loJResp.BoolOf("product.movements.resource.id") lcProductMovementsResourceUrl = loJResp.StringOf("product.movements.resource.url") lcProductMovementsResourceLink = loJResp.StringOf("product.movements.resource.link") RELEASE loHttp RELEASE loJson RELEASE loSbResponseBody RELEASE loJResp |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.