Come ottenere l'indirizzo cliente / indirizzo di fatturazione tramite ID cliente? ecco cosa ho fatto finora:
$customerId = $_POST["customer_id"];
$customer = $this->_customerRepository->getById($customerId);
$address = $this->_addressRepository->getByCustomerId($customerId);//error
$customer->getDefaultBilling();
restituisco NULL