Background:
- I create a braintree customer with firstName, lastName and email
- I use the dropin ui in checkout form and it creates a payment_method and token and sends me a nonce. Good so far.
- I need to add a billing address to the payment_method before I charge the nonce...
Question: How can I discover which payment_method is associated with my nonce?
Edit to add: There is a paradoxical reference at the bottom of the javascript+PHP page to an otherwise undocumented [paymentMethodNonce] parameter which uses an also undocumented [options][verifyCard] parameter. I suppose I could run [paymentMethodNonce] sans [options] against each payment_method token associated the user and inspect the errors... lol.