Class: VoucherifySdk::RedemptionsApi
- Inherits:
-
Object
- Object
- VoucherifySdk::RedemptionsApi
- Defined in:
- lib/VoucherifySdk/api/redemptions_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_redemption(redemption_id, opts = {}) ⇒ RedemptionsGetResponseBody
Get Redemption Return a redemption or redemption rollback object.
-
#get_voucher_redemptions(code, opts = {}) ⇒ VouchersRedemptionGetResponseBody
Get Voucher’s Redemptions Retrieve the number of times a voucher was redeemed and each of the redemption details.
-
#initialize(api_client = ApiClient.default) ⇒ RedemptionsApi
constructor
A new instance of RedemptionsApi.
-
#list_redemptions(opts = {}) ⇒ RedemptionsListResponseBody
List Redemptions Returns a list of redemptions previously created.
-
#redeem_stacked_discounts(opts = {}) ⇒ RedemptionsRedeemResponseBody
Redeem Stackable Discounts # How API returns calculated discounts and order amounts in the response In the table below, you can see the logic the API follows to calculate discounts and amounts: 📘 Rollbacks You cant roll back a child redemption.
-
#rollback_redemption(redemption_id, opts = {}) ⇒ RedemptionsRollbackCreateResponseBody
Rollback Redemption Your business logic may include a case when you need to undo a redemption.
-
#rollback_stacked_redemptions(parent_redemption_id, opts = {}) ⇒ RedemptionsRollbacksCreateResponseBody
Rollback Stackable Redemptions Rollback a stackable redemption.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ RedemptionsApi
Returns a new instance of RedemptionsApi.
19 20 21 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_redemption(redemption_id, opts = {}) ⇒ RedemptionsGetResponseBody
Get Redemption Return a redemption or redemption rollback object. This object can either be a successfull or failed redemption or redemption rollback.
27 28 29 30 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 27 def get_redemption(redemption_id, opts = {}) data, _status_code, _headers = get_redemption_with_http_info(redemption_id, opts) data end |
#get_voucher_redemptions(code, opts = {}) ⇒ VouchersRedemptionGetResponseBody
Get Voucher’s Redemptions Retrieve the number of times a voucher was redeemed and each of the redemption details.
90 91 92 93 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 90 def get_voucher_redemptions(code, opts = {}) data, _status_code, _headers = get_voucher_redemptions_with_http_info(code, opts) data end |
#list_redemptions(opts = {}) ⇒ RedemptionsListResponseBody
List Redemptions Returns a list of redemptions previously created. The redemptions are returned in a sorted order, with the most recent redemptions appearing first. The response returns a list of redemptions of all vouchers. # Filtering results The result can be narrowed according to specified (or default) filters, for example, you can sort redemptions by date: api.voucherify.io/v1/redemptions?limit 3&[before] 2017-09-08T13:52:18.227Z. A filter based on the object created_at field narrows down the results and lists redemptions done before or after a particular date time. You can use the following options: [created_at], [created_at]. A date value must be presented in ISO 8601 format (2016-11-16T14:14:31Z or 2016-11-16). An example: [created_at] 2017-09-08T13:52:18.227Z. # Failed Redemptions A redemption may fail for various reasons. You can figure out an exact reason from the failure_code: - resource_not_found - voucher with given code does not exist - voucher_not_active - voucher is not active yet (before start date) - voucher_expired - voucher has already expired (after expiration date) - voucher_disabled - voucher has been disabled (active: false) - quantity_exceeded - vouchers redemptions limit has been exceeded - gift_amount_exceeded - gift amount has been exceeded - customer_rules_violated - customer did not match the segment - order_rules_violated - order did not match validation rules - invalid_order - order was specified incorrectly - invalid_amount - order amount was specified incorrectly - missing_amount - order amount was not specified - missing_order_items - order items were not specified - missing_customer - customer was not specified
160 161 162 163 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 160 def list_redemptions(opts = {}) data, _status_code, _headers = list_redemptions_with_http_info(opts) data end |
#redeem_stacked_discounts(opts = {}) ⇒ RedemptionsRedeemResponseBody
Redeem Stackable Discounts # How API returns calculated discounts and order amounts in the response In the table below, you can see the logic the API follows to calculate discounts and amounts: 📘 Rollbacks You cant roll back a child redemption. When you call rollback on a stacked redemption, all child redemptions will be rolled back. You need to refer to a parent redemption ID in your rollback request. 📘 Also available on client-side This method is also accessible through public keys which you can use in client-side apps: mobile and web browser apps. Go to the dedicated endpoint to learn more. - Use X-Client-Application-Id as the application ID header. - Use X-Client-Token as the appliction secret key header. - Use client-side base URL. - Use an origin header for your custom domain.
246 247 248 249 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 246 def redeem_stacked_discounts(opts = {}) data, _status_code, _headers = redeem_stacked_discounts_with_http_info(opts) data end |
#rollback_redemption(redemption_id, opts = {}) ⇒ RedemptionsRollbackCreateResponseBody
Rollback Redemption Your business logic may include a case when you need to undo a redemption. You can revert a redemption by calling this API endpoint. # Effect The operation - creates a rollback entry in vouchers redemption history (redemption.redemption_entries) and - gives 1 redemption back to the pool (decreases redeemed_quantity by 1). # Returned funds In case of *gift card vouchers*, this method returns funds back according to the source redemption. In case of *loyalty card vouchers*, this method returns points back according to the source redemption.
313 314 315 316 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 313 def rollback_redemption(redemption_id, opts = {}) data, _status_code, _headers = rollback_redemption_with_http_info(redemption_id, opts) data end |
#rollback_stacked_redemptions(parent_redemption_id, opts = {}) ⇒ RedemptionsRollbacksCreateResponseBody
Rollback Stackable Redemptions Rollback a stackable redemption. When you rollback a stacked redemption, all child redemptions will be rolled back. Provide the parent redemption ID as the path parameter.
389 390 391 392 |
# File 'lib/VoucherifySdk/api/redemptions_api.rb', line 389 def rollback_stacked_redemptions(parent_redemption_id, opts = {}) data, _status_code, _headers = rollback_stacked_redemptions_with_http_info(parent_redemption_id, opts) data end |