Sample code for 30+ languages & platforms
AutoIt

Shopware 6 - Create Product

See more Shopware 6 Examples

Create a new product.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

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

$oHttp = ObjCreate("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 = ObjCreate("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",False)
$oJson.UpdateString("tax.name","test")
$oJson.UpdateInt("tax.taxRate",15)

; Load the access token previously obtained in Shopware 6 OAuth2 Client Credentials
$oJsonToken = ObjCreate("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 = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpJson("POST","https://my-shopware-6-shop.de/api/v3/product",$oJson,"application/json",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$oResp.GetBodySb($oSbResponseBody)
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False

; A successful response is a 204 response status code with an empty response body.
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)

; If we get a 401 response, it may be that our access token expired and we need to fetch a new one.
Local $iRespStatusCode = $oResp.StatusCode
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oResp.Header & @CRLF)
    ConsoleWrite("Failed." & @CRLF)
    Exit
EndIf