Visual Basic 6.0
Visual Basic 6.0
Shopware 6 - Rename Category
See more Shopware 6 Examples
Changes the name of an existing category.Chilkat Visual Basic 6.0 Downloads
Dim success As Long
success = 0
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
' 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
Dim jsonToken As New ChilkatJsonObject
success = jsonToken.LoadFile("qa_data/tokens/shopware6.json")
' This causes the "Authorization: Bearer <access_token>" header to be added.
http.AuthToken = jsonToken.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"
' }
Dim categoryId As String
categoryId = "ab6e524bf224404cb4b675a76550b8cd"
Dim sbUrl As New ChilkatStringBuilder
success = sbUrl.Append("https://my-shopware-6-shop.de/api/v3/category/")
success = sbUrl.Append(categoryId)
' Rename the category to "TestABC"
Dim json As New ChilkatJsonObject
success = json.UpdateString("name","TestABC")
Dim url As String
url = sbUrl.GetAsString()
Dim resp As New ChilkatHttpResponse
success = http.HttpJson("PATCH",url,json,"application/json",resp)
If (success = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
' A 204 response status code indicates success.
' The response body will be empty when successful.
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
' If we get a 401 response, it may be that our access token expired and we need to fetch a new one.
Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print resp.Header
Debug.Print "Failed."
Exit Sub
End If