Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 282 Bytes

Customers.md

File metadata and controls

19 lines (13 loc) · 282 Bytes

Customers

List customers

$client->customers()->list();

Find a customer

$client->customers()->find('customer@email.com');

Update a customer

$client->customers()->update('existing@email.com', 'new@email.com', ['name' => 'Customer']);