Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to create customer using python api of shopify

custo = shopify.Customer()
      custo.first_name = "andres"
      custo.last_name = "cepeda"
      custo.addresses = [{"address1": "123 Oak st", "city": "Ottawa", "phone": "9876543210"}]
      custo.save()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #customer #python #api #shopify
ADD COMMENT
Topic
Name
4+7 =