Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 3.83 KB

File metadata and controls

64 lines (40 loc) · 3.83 KB

Voucherify.LoyaltiesMembersCreateResponseBody

Properties

Name Type Description Notes
id String Assigned by the Voucherify API, identifies the voucher. [optional]
code String A code that identifies a voucher. Pattern can use all letters of the English alphabet, Arabic numerals, and special characters. [optional]
campaign String A unique campaign name, identifies the voucher's parent campaign. [optional]
campaignId String Assigned by the Voucherify API, identifies the voucher's parent campaign. [optional]
category String Tag defining the category that this voucher belongs to. [optional]
categoryId String Unique category ID assigned by Voucherify. [optional]
type String Defines the type of the voucher. [optional] [default to 'LOYALTY_CARD']
discount Object [optional]
gift Object [optional]
loyaltyCard LoyaltiesMembersCreateResponseBodyLoyaltyCard [optional]
startDate Date Activation timestamp defines when the code starts to be active in ISO 8601 format. Voucher is inactive before this date. [optional]
expirationDate Date Expiration timestamp defines when the code expires in ISO 8601 format. Voucher is inactive after this date. [optional]
validityTimeframe ValidityTimeframe [optional]
validityDayOfWeek [Number] Integer array corresponding to the particular days of the week in which the voucher is valid. - `0` Sunday - `1` Monday - `2` Tuesday - `3` Wednesday - `4` Thursday - `5` Friday - `6` Saturday [optional]
validityHours ValidityHours [optional]
active Boolean A flag to toggle the voucher on or off. You can disable a voucher even though it's within the active period defined by the `start_date` and `expiration_date`. - `true` indicates an active voucher - `false` indicates an inactive voucher [optional]
additionalInfo String An optional field to keep any extra textual information about the code such as a code description and details. [optional]
metadata Object The metadata object stores all custom attributes assigned to the code. A set of key/value pairs that you can attach to a voucher object. It can be useful for storing additional information about the voucher in a structured format. [optional]
assets VoucherAssets [optional]
isReferralCode Boolean This is always false for loyalty members. [optional]
createdAt Date Timestamp representing the date and time when the voucher was created. The value is shown in the ISO 8601 format. [optional]
updatedAt Date Timestamp representing the date and time when the voucher was last updated in ISO 8601 format. [optional]
holderId String Unique identifier of the customer who owns the voucher. [optional]
object String The type of the object represented by JSON. Default is `voucher`. [optional] [default to 'voucher']
publish LoyaltiesMembersCreateResponseBodyPublish [optional]
redemption LoyaltiesMembersCreateResponseBodyRedemption [optional]

Enum: TypeEnum

  • LOYALTY_CARD (value: "LOYALTY_CARD")

Enum: [ValidityDayOfWeekEnum]

  • 0 (value: 0)

  • 1 (value: 1)

  • 2 (value: 2)

  • 3 (value: 3)

  • 4 (value: 4)

  • 5 (value: 5)

  • 6 (value: 6)