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
(Swift 3,4,5...) Akeneo: Create New ProductDemonstrates how to create a new product.
func chilkatTest() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! // Use your previously obtained access token. // See Get Akeneo Access Token http.authToken = "access_token" // Build the following JSON to be sent in the request body: // Use this online tool to generate the code from sample JSON: // Generate Code to Create JSON // { // "identifier": "top", // "enabled": true, // "family": "tshirt", // "categories": [ // "summer_collection" // ], // "groups": [], // "parent": null, // "values": { // "name": [ // { // "data": "Top", // "locale": "en_US", // "scope": null // }, // { // "data": "Dbardeur", // "locale": "fr_FR", // "scope": null // } // ], // "description": [ // { // "data": "Summer top", // "locale": "en_US", // "scope": "ecommerce" // }, // { // "data": "Top", // "locale": "en_US", // "scope": "tablet" // }, // { // "data": "Dbardeur pour l't", // "locale": "fr_FR", // "scope": "ecommerce" // }, // { // "data": "Dbardeur", // "locale": "fr_FR", // "scope": "tablet" // } // ], // "price": [ // { // "locale": null, // "scope": null, // "data": [ // { // "amount": "150.5", // "currency": "EUR" // }, // { // "amount": "150", // "currency": "USD" // } // ] // } // ], // "color": [ // { // "locale": null, // "scope": null, // "data": "black" // } // ], // "size": [ // { // "locale": null, // "scope": null, // "data": "m" // } // ] // }, // "associations": { // "PACK": { // "products": [ // "sunglass" // ], // "groups": [] // } // } // } // let json = CkoJsonObject()! json.update("identifier", value: "top") json.updateBool("enabled", value: true) json.update("family", value: "tshirt") json.update("categories[0]", value: "summer_collection") json.updateNewArray("groups") json.updateNull("parent") json.update("values.name[0].data", value: "Top") json.update("values.name[0].locale", value: "en_US") json.updateNull("values.name[0].scope") json.update("values.name[1].data", value: "Dbardeur") json.update("values.name[1].locale", value: "fr_FR") json.updateNull("values.name[1].scope") json.update("values.description[0].data", value: "Summer top") json.update("values.description[0].locale", value: "en_US") json.update("values.description[0].scope", value: "ecommerce") json.update("values.description[1].data", value: "Top") json.update("values.description[1].locale", value: "en_US") json.update("values.description[1].scope", value: "tablet") json.update("values.description[2].data", value: "Dbardeur pour l't") json.update("values.description[2].locale", value: "fr_FR") json.update("values.description[2].scope", value: "ecommerce") json.update("values.description[3].data", value: "Dbardeur") json.update("values.description[3].locale", value: "fr_FR") json.update("values.description[3].scope", value: "tablet") json.updateNull("values.price[0].locale") json.updateNull("values.price[0].scope") json.update("values.price[0].data[0].amount", value: "150.5") json.update("values.price[0].data[0].currency", value: "EUR") json.update("values.price[0].data[1].amount", value: "150") json.update("values.price[0].data[1].currency", value: "USD") json.updateNull("values.color[0].locale") json.updateNull("values.color[0].scope") json.update("values.color[0].data", value: "black") json.updateNull("values.size[0].locale") json.updateNull("values.size[0].scope") json.update("values.size[0].data", value: "m") json.update("associations.PACK.products[0]", value: "sunglass") json.updateNewArray("associations.PACK.groups") json.emitCompact = false // Show the JSON to be sent.. print("\(json.emit()!)") var url: String? = "http://pim.my-akeneo-site.com/api/rest/v1/products" var resp: CkoHttpResponse? = http.postJson3(url, contentType: "application/json", json: json) if http.lastMethodSuccess != true { print("\(http.lastErrorText!)") return } print("Response Status Code: \(resp!.statusCode.intValue)") print("Response Body: ") print("\(resp!.bodyStr!)") // The akeneo response will include a "Location" header, such as the following: // HTTP/1.1 201 Created // Date: Tue, 22 Jan 2019 10:36:35 GMT // Server: Apache/2 // X-Powered-By: PHP/7.1.25 // Cache-Control: max-age=0, private, must-revalidate, no-cache, private // Set-Cookie: abcdefg; path=/; HttpOnly // Location: http://xyz.example.com/api/rest/v1/products/L0000123 // Vary: User-Agent // Content-Length: 0 // Keep-Alive: timeout=2, max=100 // Connection: Keep-Alive // Content-Type: application/json // Get the location header using resp.GetHeaderField var location: String? = resp!.getHeaderField("Location") print("Location: \(location!)") resp = nil } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.