Class: Stripe::Crypto::CustomerPaymentTokenService

Inherits:
StripeService
  • Object
show all
Defined in:
lib/stripe/services/crypto/customer_payment_token_service.rb

Instance Method Summary collapse

Methods inherited from StripeService

#initialize, #request, #request_stream

Constructor Details

This class inherits a constructor from Stripe::StripeService

Instance Method Details

#list(id, params = {}, opts = {}) ⇒ Object

Lists the Payment Tokens for a Crypto Customer.



8
9
10
11
12
13
14
15
16
# File 'lib/stripe/services/crypto/customer_payment_token_service.rb', line 8

def list(id, params = {}, opts = {})
  request(
    method: :get,
    path: format("/v1/crypto/customers/%<id>s/payment_tokens", { id: CGI.escape(id) }),
    params: params,
    opts: opts,
    base_address: :api
  )
end