class Mercadopago::Payment
[Click here for more infos](www.mercadopago.com.br/developers/en/guides/online-payments/checkout-api/introduction/)
Public Instance Methods
create(payment_data, request_options: nil)
click to toggle source
# File lib/mercadopago/resources/payment.rb, line 23 def create(payment_data, request_options: nil) raise TypeError, 'Param payment_data must be a Hash' unless payment_data.is_a?(Hash) _post(uri: '/v1/payments/', data: payment_data, request_options: request_options) end
get(payment_id, request_options: nil)
click to toggle source
# File lib/mercadopago/resources/payment.rb, line 19 def get(payment_id, request_options: nil) _get(uri: "/v1/payments/#{payment_id}", request_options: request_options) end
search(filters: nil, request_options: nil)
click to toggle source
# File lib/mercadopago/resources/payment.rb, line 13 def search(filters: nil, request_options: nil) raise TypeError, 'Param filters must be a Hash' unless filters.nil? || filters.is_a?(Hash) _get(uri: '/v1/payments/search', filters: filters, request_options: request_options) end
update(payment_id, payment_data, request_options: nil)
click to toggle source
# File lib/mercadopago/resources/payment.rb, line 29 def update(payment_id, payment_data, request_options: nil) raise TypeError, 'Param payment_data must be a Hash' unless payment_data.is_a?(Hash) _put(uri: "/v1/payments/#{payment_id}", data: payment_data, request_options: request_options) end