Magento – How to Get Customer data by telephone number in Magento2

customercustomer-addressmagento2rest

I have a telephone number which is given in Default address..by using this telephone number i need to get Customer Full data.Data like customer id, customer full name..etc

Best Answer

Let us $telephone_number is value of current customer's telephone number than you can use $customer and get your data like as:-

$customer->load($telephone_number,'telephone_number');
$customer->getData();
Related Topic