Sample code for 30+ languages & platforms
PureBasic

Shopware Create a New Product

See more Shopware Examples

Create a new product in Shopware.

Chilkat PureBasic Downloads

PureBasic
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkJsonObject.pb"

Procedure ChilkatExample()

    success.i = 0

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttp::setCkLogin(http, "api_username")
    CkHttp::setCkPassword(http, "api_key")
    CkHttp::setCkBasicAuth(http, 1)

    ; 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
    ;       }
    ;     ]
    ;   }
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"name","Sport Shoes")
    CkJsonObject::ckUpdateBool(json,"active",1)
    CkJsonObject::ckUpdateInt(json,"tax",19)
    CkJsonObject::ckUpdateString(json,"supplier","Sport Shoes Inc.")
    CkJsonObject::ckUpdateInt(json,"categories[0].id",384)
    CkJsonObject::ckUpdateString(json,"mainDetail.number","turn")
    CkJsonObject::ckUpdateBool(json,"mainDetail.active",1)
    CkJsonObject::ckUpdateString(json,"mainDetail.prices[0].customerGroupKey","EK")
    CkJsonObject::ckUpdateInt(json,"mainDetail.prices[0].price",999)

    resp.i = CkHttpResponse::ckCreate()
    If resp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkHttp::ckHttpJson(http,"POST","https://my-shopware-shop.com/api/articles",json,"application/json",resp)
    If success = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkHttpResponse::ckDispose(resp)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    ; A 201 response code indicates success.
    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkHttpResponse::ckDispose(resp)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    ; 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

    success = CkJsonObject::ckBoolOf(jResp,"success")
    dataId.i = CkJsonObject::ckIntOf(jResp,"data.id")
    dataLocation.s = CkJsonObject::ckStringOf(jResp,"data.location")


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)
    CkHttpResponse::ckDispose(resp)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure