See also the Payment Method response object.
Look up a payment method by token.
gateway.paymentMethod.find("token", (err, paymentMethod) => { });
If the payment method can't be found, it will return a notFoundError
.
Arguments
Examples
Single PayPal account
If you want to look up a single PayPal account using its token, use the find method.
gateway.paypalAccount.find(
"theToken",
(err, paypalAccount) => {
}
);
If the PayPal account can't be found, it will return a notFoundError
.