Sample code for 30+ languages & platforms
Dart

Shopware Create a New Product

See more Shopware Examples

Create a new product in Shopware.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  http.login = 'api_username';
  http.password = 'api_key';
  http.basicAuth = true;

  // Use this online tool to generate code from sample JSON:
  // Generate Code to Create JSON

  // The following JSON is sent in the request body.

  // {
  //   "name": "Sport Shoes",
  //   "active": true,
  //   "tax": 19,
  //   "supplier": "Sport Shoes Inc.",
  //   "categories": [
  //     {
  //       "id": 384
  //     }
  //   ],
  //   "mainDetail": {
  //     "number": "turn",
  //     "active": true,
  //     "prices": [
  //       {
  //         "customerGroupKey": "EK",
  //         "price": 999
  //       }
  //     ]
  //   }
  // }

  final json = CkJsonObject();
  json.updateString('name', 'Sport Shoes');
  json.updateBool('active', true);
  json.updateInt('tax', 19);
  json.updateString('supplier', 'Sport Shoes Inc.');
  json.updateInt('categories[0].id', 384);
  json.updateString('mainDetail.number', 'turn');
  json.updateBool('mainDetail.active', true);
  json.updateString('mainDetail.prices[0].customerGroupKey', 'EK');
  json.updateInt('mainDetail.prices[0].price', 999);

  final resp = CkHttpResponse();
  try {
    http.httpJson('POST', 'https://my-shopware-shop.com/api/articles', json, 'application/json', resp);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final sbResponseBody = CkStringBuilder();
  resp.getBodySb(sbResponseBody);

  final jResp = CkJsonObject();
  jResp.loadSb(sbResponseBody);
  jResp.emitCompact = false;

  print('Response Body:');
  print(jResp.emit());

  // A 201 response code indicates success.
  final respStatusCode = resp.statusCode;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(resp.header);
    print('Failed.');
    return;
  }

  // Sample JSON response:
  // (Sample code for parsing the JSON response is shown below)

  // {
  //   "success": true,
  //   "data": {
  //     "id": 8312,
  //     "location": "https:\/\/my-shopware-shop.com\/api\/articles\/8312"
  //   }
  // }

  // Sample code for parsing the JSON response...
  // Use the following online tool to generate parsing code from sample JSON:
  // Generate Parsing Code from JSON

  jResp.boolOf('success');
  final dataId = jResp.intOf('data.id');
  final dataLocation = jResp.stringOf('data.location');
}