The minimum amount for a value voucher. Only applies if the type is value_voucher.
maximum_amount_in_cents
The maximal amount for a value voucher. Only applies if the type is value_voucher.
price_in_cents
The price for a voucher type for a package. Only applies if the type is package.
variant_name
The name for the selection of variants in all available languages. Only available if the type is variants.
variants
List of the different variants. Only available if the type is variants.
Type
value_voucher
Indicates that this is a value voucher. minimum_amount_in_cents and maximum_amount_in_cents define the amount a voucher may have.
package
Indicates that this is a voucher type for a package which has a fixed amount. price_in_cents shows the price.
variants
Indicates that this is a voucher type with several variants. variant_name contains the name of the variant and variant_name a list of the different variants.
other
The type other means that the voucher type is not precisely specified. Please note that these voucher types cannot be issued via the Create Order API
Variant
id
The ID of the variant.
name
The name of the variant in all available languages.
price_in_cents
The price of the variant.
pre_selected
Specifies whether this variant should be preselected. It is possible that this value is not set for any variant.
Example
GET https://api.e-guma.ch/v1/voucher_types?&apikey=5bb668e394f2811f3ca4a9db
[
{
"id": "05f400c1-0a61-4f1b-8387-6f4150c85a2c",
"name": {
"de": "Gourmet-Abend für zwei",
"en": "Gourmet evening for two"
},
"description_html": {
"de": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
},
"published": true,
"published_in_online_shop": true,
"image_url": "https://images.e-guma.ch/4214/thumbs/95eb6cb0eae045d59bb486578f1bc98d.jpg",
"type": "package",
"minimum_amount_in_cents": 0,
"maximum_amount_in_cents": 0,
"price_in_cents": 30000,
"variant_name": {},
"variants": [],
"updated_at": "2024-05-14T03:27:28"
},
{
"id": "25a6e7da-8efa-4565-8d32-22917fb65568",
"name": {
"de": "Sonntagsbrunch",
"en": "Sunday brunch"
},
"description_html": {
"de": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
},
"published": true,
"published_in_online_shop": true,
"image_url": "https://images.e-guma.ch/4214/thumbs/95eb6cb0eae045d59bb486578f1bc98d.jpg",
"type": "variants",
"minimum_amount_in_cents": 0,
"maximum_amount_in_cents": 0,
"price_in_cents": 0,
"variant_name": {
"de": "Personen",
"en": "Persons"
},
"variants": [
{
"id": "Child",
"name": {
"de": "1 Kind (6-16 Jahre)",
"en": "1 Child (6-16 years)"
},
"price_in_cents": 2000,
"pre_selected": false
},
{
"id": "Adult",
"name": {
"de": "1 Erwachsene Person",
"en": "1 Adult"
},
"price_in_cents": 4000,
"pre_selected": true
}
],
"updated_at": "2024-05-14T06:13:05"
},
{
"id": "31b75e37-5bb1-44f1-b2bf-4d2ba2a93d4c",
"name": {
"de": "Übernachtung",
"en": "Overnight Stay"
},
"description_html": {
"de": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
},
"published": true,
"published_in_online_shop": true,
"image_url": "https://images.e-guma.ch/4214/thumbs/95eb6cb0eae045d59bb486578f1bc98d.jpg",
"type": "other",
"minimum_amount_in_cents": 0,
"maximum_amount_in_cents": 0,
"price_in_cents": 0,
"variant_name": {},
"variants": [],
"updated_at": "2024-05-14T03:40:03"
},
{
"id": "846b5014-8577-47b8-b4ff-39e76b5d08f5",
"name": {
"de": "Wertgutschein",
"en": "Value voucher"
},
"description_html": {
"de": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"en": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
},
"published": true,
"published_in_online_shop": true,
"image_url": "https://images.e-guma.ch/4214/thumbs/95eb6cb0eae045d59bb486578f1bc98d.jpg",
"type": "value_voucher",
"minimum_amount_in_cents": 2000,
"maximum_amount_in_cents": 300000,
"price_in_cents": 0,
"variant_name": {},
"variants": [],
"updated_at": "2024-05-14T06:18:07"
}
]