Class: Mercadopago::Payment
- Defined in:
- lib/mercadopago/resources/payment.rb
Overview
Manages payment operations through the Checkout API.
Supports the full payment lifecycle: create, retrieve, search, and update. Use this resource to build custom checkout experiences.
Instance Method Summary collapse
-
#create(payment_data, request_options: nil) ⇒ Hash{Symbol => Object}
Creates a new payment.
-
#get(payment_id, request_options: nil) ⇒ Hash{Symbol => Object}
Retrieves a single payment by its ID.
-
#search(filters: nil, request_options: nil) ⇒ Hash{Symbol => Object}
Searches payments matching the given filters.
-
#update(payment_id, payment_data, request_options: nil) ⇒ Hash{Symbol => Object}
Updates an existing payment (e.g. capture an authorized payment).
Methods inherited from MPBase
#_check_headers, #_check_request_options, #_delete, #_get, #_post, #_put, #initialize
Constructor Details
This class inherits a constructor from Mercadopago::MPBase
Instance Method Details
#create(payment_data, request_options: nil) ⇒ Hash{Symbol => Object}
Creates a new payment.
42 43 44 45 46 |
# File 'lib/mercadopago/resources/payment.rb', line 42 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: ) end |
#get(payment_id, request_options: nil) ⇒ Hash{Symbol => Object}
Retrieves a single payment by its ID.
31 32 33 |
# File 'lib/mercadopago/resources/payment.rb', line 31 def get(payment_id, request_options: nil) _get(uri: "/v1/payments/#{payment_id}", request_options: ) end |
#search(filters: nil, request_options: nil) ⇒ Hash{Symbol => Object}
Searches payments matching the given filters.
19 20 21 22 23 |
# File 'lib/mercadopago/resources/payment.rb', line 19 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: ) end |
#update(payment_id, payment_data, request_options: nil) ⇒ Hash{Symbol => Object}
Updates an existing payment (e.g. capture an authorized payment).
56 57 58 59 60 |
# File 'lib/mercadopago/resources/payment.rb', line 56 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: ) end |