❗️ Deprecated
This endpoint represents the deprecated version of the API responsible for voucher validation, and we do not recommend using it. The new Stackable Discounts API introduces additional features and improvements while maintaining backward compatibility, including applying a combination of coupon codes and promotion tiers. Developers are encouraged to migrate to the latest version to take advantage of the latest enhancements and bug fixes. No updates will be provided to the deprecated endpoint.
To verify a voucher code given by customer, you can use this method. It is designed for client side integration which means that is accessible only through public keys. This method is designed to be run directly either in web browsers or mobile apps.
❗️ Specifying gift credits and loyalty points
This endpoint does not support specifying the specific amount of gift credits to apply to an order nor the specific amount of loyalty points to an order. It calculates the amount that is available on the card and applies as much credits or points as possible to cover the total amount.
Voucherify can help you track anonymous customers. Once you integrate Voucherify into your web app and call the validate method, Voucherify will return a tracking ID and the script will store it in a cookie. Each subsequent validate call will use the same tracking ID.
Voucherify tracks a user using a tracking ID to see if the user who is validating vouchers is the same as the one who consuming them. Voucherify does this by setting up an identity for the user. A tracking_id will be generated on the server side, unless you specify your own tracking_id. In both cases, you will receive the tracking_id in the validation response.
The returned tracking_id field should be used as the customer source_id in subsequent redemption requests. Moreover, the tracking_id returned from Validation API is encoded. Voucherify will recognize both values for identifying customer - the one before encryption sent as a query parameter to the GET v1/validate request, and the version encrypted and returned as part of the validation request.
Customer tracking workflow in a nutshell:
Client-side:
tracking_id.Backend:
tracking_id to your backend during a redemption call. The tracking_id is sent as a value assigned to the property source_id in a customer object.id.id or the customer source_id to fetch or modify the customer details.A customer is created (upserted) automatically with a redemption call. Alternatively, you can create a new profile by creating a customer via a dedicated API method. Take a look at the customer object to understand the entity’s structure.
📘 Customer identifier
The source id of the customer may either be an already hashed version of the
tracking_id, which you received in a response from a validation request or a custom ID you predefined (i.e. an email address). Nevertheless, we recommend using identifiers delivered by Voucherify API.
| Query Parameters | Example URL |
|---|---|
Shortcut - customer query param instead of customer[source_id] | https://api.voucherify.io/client/v1/validate?code=sKKFCKLZ&amount=10100&customer=customer_id |
Pass customer’s and redemption’s context metadata in query parameters | https://api.voucherify.io/client/v1/validate?code=sKKFCKLZ&amount=10100&customer=sure_he_is_new&metadata[shop]=1&customer[metadata][propsy]=2&metadata[test]=true |
Use tracking_id instead of source_id | https://api.voucherify.io/client/v1/validate?code=IKU-mvS-JOG&amount=10100&tracking_id=sure_he_is_new_5&metadata[shop]=1&metadata[test]=true |
Voucher validation might fail because of one of these reasons:
voucher not found - voucher doesn’t exist or was deletedvoucher expired - voucher is out of [start date - expiration date] timeframevoucher is disabled - learn more about disabled voucherscustomer does not match segment rules - learn more about customer trackingorder does not match validation rules - learn more about validation rules