class Paysafe::Api::CardPaymentsApi
Public Instance Methods
create_verification(**data)
click to toggle source
# File lib/paysafe/api/card_payments_api.rb, line 9 def create_verification(**data) perform_post_with_object("/cardpayments/v1/accounts/#{account_number}/verifications", data, Verification) end
get_verification(id:)
click to toggle source
# File lib/paysafe/api/card_payments_api.rb, line 17 def get_verification(id:) perform_get_with_object("/cardpayments/v1/accounts/#{account_number}/verifications/#{id}", Verification) end