walshe
(E W)
1
is it possible to specify when using things like
dwollaClient.customers.createUnverified(...)
stephen
(Stephen Ausman)
2
Hey @walshe,
Yup, idempotencyKey can optionally be included with those methods. For example:
dwolla.customers.createUnverified(
firstName = "first",
lastName = "last",
email = "your@email.com",
idempotencyKey = "your-key"
)
Also see: