Scenarios
Create a default voucher (POST
)
Authorization is required
URL /merchants/${merchantId}
/vouchers
Note
In this scenario we're create a simple money value based voucher.
Usage of Code Generator
Defines how the code should look like, when automatically generated.
Property | Type | Description | Default |
---|---|---|---|
charset | enum |
Defines, which chars sould be used. Can be numerical , alphanumerical , alphabetical . |
numerical |
length | number |
Length of code | 8 |
pattern | string |
You can define a patter by using # . Each # will be replaced by a char of the genrator code. All other than # will count as one character as well. |
####-### |
prefix | string |
Use this to add something before the code. | empty |
suffix | string |
Use this to add someting to the end. | empty |
uppercase | boolean |
If using alphabetical or alphanumerical all chars will be uppercase if true - otherwise it could be a mix of upper- and lowercase characters. |
abc |
Create a volume of vouchers (POST
)
Authorization is required
URL /merchants/${merchantId}
/vouchers/quantity/${quantity}
We use the same base request as in Create default voucher.
BUT
..we have to add a reference to identity all vouchers related to this volume-generation.
If you don't provide a reference, you will end in an exception.
Limitations
Currently the maximum amount of vouchers you can create with one request is
limited to 1000
.
If you exceed the limit per request, you will end in an exception.
Deactivate vouchers (POST
)
by id
Authorization is required
URL /merchants/${merchantId}
/vouchers/deactivate
Deactivate a single voucher
by reference
Authorization is required
URL /merchants/${merchantId}
/vouchers/deactivate
Deactivate a single voucher
Get vouchers - with filter (GET
)
Authorization is required
URL /merchants/${merchantId}
/vouchers
by VoucherStatus (Query-Parameter
voucherStatus)
Status | Description |
---|---|
COLLECT | If you have a default voucher, you will get all generated vouchers based on your default voucher. |
REDEEM | You will receive all vouchers, that are redeemed while checkout. |
CHECK | You will receive all vouchers, that were entered in the checkout process. |
Redeem voucher (POST
)
Authorization is required
URL /vouchers/${voucherCode}
/redeem
Property | Type | Description | Mandatory |
---|---|---|---|
amountToPay | number | The amount the cart has. | yes |
merchantId | objectId | The Fanz Merchant-Id | yes |
order | object | Your payload you want to proxy. It will be the body of callback |
no |
callback | object | Get notified, when a voucher is redeemed. | should |
PERCENTAGE voucher
If it's a percentage voucher, the redemption is straight forward: The whole voucher code will marked as REDEEMED
and is not available anymore.
AMOUNT voucher
If you reedem a voucher with an amount it's quiet different. Let's explain three possible scenarios:
Amount to pay is higher than amount of voucher
Straight forward: Voucher is completely REDEEMED
.
Amount to pay is equal to amount of voucher
Straight forward: Voucher is completely REDEEMED
.
Amount to pay is lower than amount of voucher
The only exception, BUT our system is designed to handle that.
Let's create an example.
You have a voucher with an amount of EUR 100.
Your cart have items for EUR 49.99.
If you redeem your voucher you have EUR 50.01 left.
You can use the voucher code until the amount is EUR 0 (Zero).