Accepting local payments
How to support Braintree local payments
Last updated
How to support Braintree local payments
Last updated
You want to allow your customers to checkout with the Braintree-supported local payment methods. You've properly configured your account in the Braintree control panel and integrated their client SDK. You now need to set up the payment source in order to support the different local payment workflows.
The first steps to setup local payments are similar to the standard ones, with the only notable difference you need to set the local
attribute as true
when you create the payment source.
After that, paths differ based on two possible scenarios — whether the customer is returning to your checkout or not.
Assuming the customer goes back to your checkout application, you need to update the payment source with the payment_method_nonce
returned by Braintree as with standard payments.
Then you have just to update the order with the _place
attribute in order to complete the payment.
Upon successful response by Braintree, the order will be captured and approved automatically, since the transaction is already settled by the local payment gateway chosen by the customer.
If the customer doesn't return to your checkout application, you need to follow a slightly different workflow:
Configure Braintree webhooks to notify Commerce Layer about the payment results — to do that, use the webhook_endpoint_url
exposed by the Braintree gateway resource.
Update it with the payment_id
returned by the client SDK, in order to let our webhook find and update the payment source used for the payment.
Monitor the order's status, since our webhook will update the payment source with the payment_method_nonce
, place the order, and — upon successful response by Braintree — capture and approve it in a single step.
The following request creates a Braintree payment object and associates it with the order identified by the "qaMAhZkZvd" ID:
The following request updates the Braintree payment source identified by the "vdDEAsZYzR" ID with the payment_id
received from the client:
See our documentation if you need more information on how to create and update a Braintree payment or if you need to learn more about Braintree gateways.