customers.xml 640 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <customers>
  3. <customer
  4. email="john@example.com"
  5. customer_group_code="wholesale"
  6. first_name="John"
  7. last_name="Doe"
  8. phone="9876543109"
  9. date_of_birth="1991-05-15"
  10. gender="Male"
  11. />
  12. <customer
  13. email="jane@example.com"
  14. customer_group_code="general"
  15. first_name="Jane"
  16. last_name="Smith"
  17. phone=""
  18. date_of_birth="1991-05-15"
  19. gender="Female"
  20. />
  21. <customer
  22. email="robert@example.com"
  23. customer_group_code="general"
  24. first_name="Robert"
  25. last_name="Johnson"
  26. phone=""
  27. date_of_birth="1990-11-26"
  28. gender="Male"
  29. />
  30. </customers>