Closed genarolaunchlabs closed 3 years ago
request = {
:email => email
}
response = dwolla_client.get "customers", request
is how I do it.
With the addition of the email
query string parameter, you can retrieve a Customer by email in the following manner:
# GET api.dwolla.com/customers?email=foo%40bar.com
$dwolla.get "customers", email: "foo@bar.com"
is there a way to get a customer by its email?