我正在尝试实现Magento Soap API,一切正常。但是,在检索客户列表时,缺少性别字段。
我正在通过Web引用进行连接,并尝试将gender字段添加到customerCustomerEntity的WSDL定义中。我尝试了以下方法:
<xsd:element minOccurs="0" name="customer_gender" type="xsd:string" />
<xsd:element minOccurs="0" name="gender" type="xsd:string" />
<xsd:element minOccurs="0" name="gender" type="xsd:int" />
字段可见但不包含任何数据。我是否遗漏了某些东西,或者是否无法使用Soap API的V2检索性别?
预先感谢您的回复!