Skip to content

Instantly share code, notes, and snippets.

@davidthomas5412
Created June 13, 2012 22:00
Show Gist options
  • Save davidthomas5412/2926759 to your computer and use it in GitHub Desktop.
Save davidthomas5412/2926759 to your computer and use it in GitHub Desktop.
Deleting customer addresses through the shopify console
cust = ShopifyAPI::Customer.find(1)
cust.addresses[0]._destroy = 1
cust.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment