Payment Method Nonce: Create

See also the Payment Method Nonce response object. To create a payment method nonce, only the payment method token is required.
  1. Callback
  2. Promise
gateway.paymentMethodNonce.create("A_PAYMENT_METHOD_TOKEN", function(err, response) {
    const nonce = response.paymentMethodNonce.nonce;
});
If the payment method can't be found, it will return a notFoundError. ;
Parameters
The token of the payment method
;