Chilkat2-Python
Chilkat2-Python
Akeneo: Delete Product
See more HTTP Misc Examples
Demonstrates how to delete product.Chilkat Chilkat2-Python Downloads
import sys
import chilkat2
success = False
# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = chilkat2.Http()
# Use your previously obtained access token.
# See Get Akeneo Access Token
http.AuthToken = "access_token"
http.SetUrlVar("productCode","123")
respStr = http.QuickDeleteStr("http://pim.my-akeneo-site.com/api/rest/v1/products/{$productCode}")
if (http.LastMethodSuccess != True):
print(http.LastHeader)
print(http.LastErrorText)
sys.exit()
print("Response Status Code: " + str(http.LastStatus))
print("Response Body: " + respStr)