Sample code for 30+ languages & platforms
Xbase++

Shopware 6 - Rename Category

See more Shopware 6 Examples

Changes the name of an existing category.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oJsonToken
LOCAL cCategoryId
LOCAL oSbUrl
LOCAL oJson
LOCAL cUrl
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")

//  You'll need to know the category's id to update the name.
//  See Find Shopware Category by Name for example code.

//  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")

//  Send a PATCH request where the category id is in the path and the new name is in the JSON body, like this:
//  PATCH /api/v3/category/ab6e524bf224404cb4b675a76550b8cd
//  {
//      "name": "new_category_name"
//  }

cCategoryId := "ab6e524bf224404cb4b675a76550b8cd"

oSbUrl := CreateObject("Chilkat.StringBuilder")
oSbUrl:Append("https://my-shopware-6-shop.de/api/v3/category/")
oSbUrl:Append(cCategoryId)

//  Rename the category to "TestABC"
oJson := CreateObject("Chilkat.JsonObject")
oJson:UpdateString("name", "TestABC")

cUrl := oSbUrl:GetAsString()
oResp := CreateObject("Chilkat.HttpResponse")
nSuccess := oHttp:HttpJson("PATCH", cUrl, oJson, "application/json", oResp)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oJsonToken:destroy()
    oSbUrl:destroy()
    oJson:destroy()
    oResp:destroy()
    RETURN
ENDIF

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

//  A 204 response status code indicates success.
//  The response body will be empty when successful.
? "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()
    oJsonToken:destroy()
    oSbUrl:destroy()
    oJson:destroy()
    oResp:destroy()
    oSbResponseBody:destroy()
    oJResp:destroy()
    RETURN
ENDIF

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