B4X
B4X
Akeneo: Delete Product
See more HTTP Misc Examples
Demonstrates how to delete product.Chilkat B4X Downloads
Dim success As Boolean = False
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As ChilkatHttp
http.Initialize("http")
' Use your previously obtained access token.
' See Get Akeneo Access Token
http.AuthToken = "access_token"
http.SetUrlVar("productCode", "123")
Dim respStr As String = http.QuickDeleteStr("http://pim.my-akeneo-site.com/api/rest/v1/products/{$productCode}")
If http.LastMethodSuccess <> True Then
Log(http.LastHeader)
Log(http.LastErrorText)
Return
End If
Log("Response Status Code: " & http.LastStatus)
Log("Response Body: " & respStr)