|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Objective-C) Shopware 6 - List CategoriesSee more Shopware 6 ExamplesGet a list of categories.Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://docs.shopware.com/en/shopware-platform-dev-en/store-api-guide/navigation?category=shopware-platform-dev-en/store-api-guide 
 #import <CkoHttp.h> #import <CkoJsonObject.h> #import <CkoHttpResponse.h> #import <CkoStringBuilder.h> #import <NSString.h> BOOL success = NO; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkoHttp *http = [[CkoHttp alloc] init]; // Sends the following POST // POST /store-api/v3/category // { // "includes": { // "category": ["id", "name"] // } // } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON CkoJsonObject *json = [[CkoJsonObject alloc] init]; [json UpdateString: @"includes.category[0]" value: @"id"]; [json UpdateString: @"includes.category[1]" value: @"name"]; // This request simply authenticate with the sw-access-key you can interactively copy from your // sales channel in the Shopware 6 administration web portal. | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.