Sample code for 30+ languages & platforms
CkPython

Shopify Delete Product

See more Shopify Examples

Delete a product from the shop.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

rest = chilkat.CkRest()

rest.SetAuthBasic("SHOPIFY_PRIVATE_API_KEY","SHOPIFY_PRIVATE_API_SECRET_KEY")

success = rest.Connect("chilkat.myshopify.com",443,True,True)
if (success != True):
    print(rest.lastErrorText())
    sys.exit()

sbResponse = chilkat.CkStringBuilder()
success = rest.FullRequestNoBodySb("DELETE","/admin/products/#{id}.json",sbResponse)
if (success != True):
    print(rest.lastErrorText())
    sys.exit()

if (rest.get_ResponseStatusCode() != 200):
    print("Received error response code: " + str(rest.get_ResponseStatusCode()))
    print("Response body:")
    print(sbResponse.getAsString())
    sys.exit()

print("Example Completed.")