Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions paylane/paylane_rest_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,14 @@ def sale_by_3d_secure_authorization(params)
request_method('post', params)
end

# Authorize by 3-D Secure authorization
#
# @param params [Hash] 3-D Secure Card params Hash
# @return [Hash] Parsed JSON response
def authorize_by_3d_secure_authorization(params)
connection('3DSecure/auth')
request_method('post', params)
end
# Cancels Paypal recurring profile
#
# @param params [Hash] Paypal params Hash
Expand Down