Sample code for 30+ languages & platforms
Xbase++

Shopware 6 - Create Product

See more Shopware 6 Examples

Create a new product.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oJson
LOCAL oJsonToken
LOCAL oResp
LOCAL oSbResponseBody
LOCAL oJResp
LOCAL nRespStatusCode

nSuccess := 0

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

oHttp := CreateObject("Chilkat.Http")

//  Sends the following POST

//  POST /api/v3/product/
//  {
//      "name" : "Test123",
//      "productNumber" : "random",
//      "stock" : 10,
//      "price" : [
//          {
//              "currencyId" : "b7d2554b0ce847cd82f3ac9bd1c0dfca", 
//              "gross": 15, 
//              "net": 10, 
//              "linked" : false
//          }
//      ],
//      "tax" : {
//          "name": "test", 
//          "taxRate": 15
//      }    
//  }

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

//  Create a product named "Test123"
oJson := CreateObject("Chilkat.JsonObject")
oJson:UpdateString("name", "Test123")
oJson:UpdateString("productNumber", "XYZ-1234")
oJson:UpdateInt("stock", 10)
oJson:UpdateString("price[0].currencyId", "b7d2554b0ce847cd82f3ac9bd1c0dfca")
oJson:UpdateInt("price[0].gross", 15)
oJson:UpdateInt("price[0].net", 10)
oJson:UpdateBool("price[0].linked", 0)
oJson:UpdateString("tax.name", "test")
oJson:UpdateInt("tax.taxRate", 15)

//  Load the access token previously obtained in Shopware 6 OAuth2 Client Credentials
oJsonToken := CreateObject("Chilkat.JsonObject")
oJsonToken:LoadFile("qa_data/tokens/shopware6.json")

//  This causes the "Authorization: Bearer <access_token>" header to be added.
oHttp:AuthToken := oJsonToken:StringOf("access_token")

oResp := CreateObject("Chilkat.HttpResponse")
nSuccess := oHttp:HttpJson("POST", "https://my-shopware-6-shop.de/api/v3/product", oJson, "application/json", oResp)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oJson:destroy()
    oJsonToken:destroy()
    oResp:destroy()
    RETURN
ENDIF

oSbResponseBody := CreateObject("Chilkat.StringBuilder")
oResp:GetBodySb(oSbResponseBody)
oJResp := CreateObject("Chilkat.JsonObject")
oJResp:LoadSb(oSbResponseBody)
oJResp:EmitCompact := 0

//  A successful response is a 204 response status code with an empty response body.
? "Response Body:"
? oJResp:Emit()

//  If we get a 401 response, it may be that our access token expired and we need to fetch a new one.
nRespStatusCode := oResp:StatusCode
? "Response Status Code = " + Str(nRespStatusCode)
IF (nRespStatusCode >= 400)
    ? "Response Header:"
    ? oResp:Header
    ? "Failed."
    oHttp:destroy()
    oJson:destroy()
    oJsonToken:destroy()
    oResp:destroy()
    oSbResponseBody:destroy()
    oJResp:destroy()
    RETURN
ENDIF

oHttp:destroy()
oJson:destroy()
oJsonToken:destroy()
oResp:destroy()
oSbResponseBody:destroy()
oJResp:destroy()