Cadastrar Cliente
Veja os campos disponíveis na documentação do Asaas, clique aqui.
/**
* @return array
*/
$phpay
->customer($customer)
->create();
Listar Clientes
/**
* @return array
*/
$phpay
->customer()
->getAll();
Listar Cliente com Filtros
Você poderá ver os campos disponíveis para filtros clicando aqui.
O campo $filters deverá ser um array chave e valor com cave sendo os campos a serem filtrados que você poderá ver no link acima.
/**
* @return array
*/
$phpay
->customer()
->setFilter($filters)
->getAll();
Buscar Cliente pelo ID
/**
* @return array customer
*/
$phpay
->customer()
->find($customerId);
Editar Cliente
/**
* @return array
*/
$phpay
->customer()
->update($customerId, $data);
Excluir Cliente
/**
* @return bool
*/
$phpay
->customer()
->destroy($customerId);
Restaurar Cliente
/**
* @return bool
*/
$phpay
->customer()
->restore($customerId);
Buscar Notificações de Cliente
/**
* @return array
*/
$phpay
->customer()
->getNotifications($customerId);