description:'Either product (valid for specified products or subscription plans) or checkout (valid for any checkout).',
options:[
{
name:'Checkout',
value:'checkout'
},
{
name:'Product',
value:'product'
},
]
},
{
displayName:'Product ID(s)',
name:'productIds',
type:'string',
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
`create`
],
couponType:[
'product',
],
},
},
default:'',
description:'Comma-separated list of product IDs. Required if coupon_type is product.',
required: true,
},
{
displayName:'Discount Type',
name:'discountType',
type:'options',
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
`create`
],
},
},
default:'flat',
description:'Either flat or percentage.',
options:[
{
name:'Flat',
value:'flat'
},
{
name:'Percentage',
value:'percentage'
},
]
},
{
displayName:'Discount Amount Currency',
name:'discountAmount',
type:'number',
default:'',
description:'Discount amount in currency.',
typeOptions:{
minValue: 0
},
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
`create`
],
discountType:[
'flat',
]
},
},
},
{
displayName:'Discount Amount %',
name:'discountAmount',
type:'number',
default:'',
description:'Discount amount in percentage.',
typeOptions:{
minValue: 0,
maxValue: 100
},
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
`create`
],
discountType:[
'percentage',
]
},
},
},
{
displayName:'Currency',
name:'currency',
type:'options',
default:'eur',
description:'The currency must match the balance currency specified in your account.',
options:[
{
name:'EUR',
value:'eur'
},
{
name:'GBP',
value:'gbp'
},
{
name:'USD',
value:'usd'
},
],
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
`create`
],
discountType:[
'flat',
]
},
},
},
{
displayName:'Additional Fields',
name:'additionalFields',
type:'collection',
placeholder:'Add Field',
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
'create',
],
},
},
default:{},
options:[
{
displayName:'Allowed Uses',
name:'allowedUses',
type:'number',
default:1,
description:'Number of times a coupon can be used in a checkout. This will be set to 999,999 by default, if not specified.',
},
{
displayName:'Coupon Code',
name:'couponCode',
type:'string',
default:'',
description:'Will be randomly generated if not specified.',
},
{
displayName:'Coupon Prefix',
name:'couponPrefix',
type:'string',
default:'',
description:'Prefix for generated codes. Not valid if coupon_code is specified.',
},
{
displayName:'Expires',
name:'expires',
type:'DateTime',
default:'',
description:'The coupon will expire on the date at 00:00:00 UTC.',
},
{
displayName:'Group',
name:'group',
type:'string',
typeOptions:{
minValue: 1,
maxValue: 50
},
default:'',
description:'The name of the coupon group this coupon should be assigned to.',
},
{
displayName:'Recurring',
name:'recurring',
type:'boolean',
default:false,
description:'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase.',
},
{
displayName:'Number of Coupons',
name:'numberOfCoupons',
type:'number',
default:1,
description:'Number of coupons to generate. Not valid if coupon_code is specified.',
},
{
displayName:'Description',
name:'description',
type:'string',
default:'',
description:'Description of the coupon. This will be displayed in the Seller Dashboard.',
description:'The name of the group of coupons you want to update.',
},
{
displayName:'Additional Fields',
name:'additionalFields',
type:'collection',
placeholder:'Add Field',
displayOptions:{
show:{
resource:[
'coupon',
],
operation:[
'update',
],
},
},
default:{},
options:[
{
displayName:'Allowed Uses',
name:'allowedUses',
type:'number',
default:1,
description:'Number of times a coupon can be used in a checkout. This will be set to 999,999 by default, if not specified.',
},
{
displayName:'Currency',
name:'currency',
type:'options',
default:'eur',
description:'The currency must match the balance currency specified in your account.',
options:[
{
name:'EUR',
value:'eur'
},
{
name:'GBP',
value:'gbp'
},
{
name:'USD',
value:'usd'
},
],
},
{
displayName:'Discount Amount',
name:'discountAmount',
type:'number',
default:'',
description:'Discount amount.',
typeOptions:{
minValue: 0
},
},
{
displayName:'Expires',
name:'expires',
type:'DateTime',
default:'',
description:'The coupon will expire on the date at 00:00:00 UTC.',
},
{
displayName:'New Coupon Code',
name:'newCouponCode',
type:'string',
default:'',
description:'New code to rename the coupon to.',
},
{
displayName:'New Group Name',
name:'newGroup',
type:'string',
typeOptions:{
minValue: 1,
maxValue: 50
},
default:'',
description:'New group name to move coupon to.',
},
{
displayName:'Product ID(s)',
name:'productIds',
type:'string',
default:'',
description:'Comma-separated list of product IDs. Required if coupon_type is product.',
},
{
displayName:'Recurring',
name:'recurring',
type:'boolean',
default:false,
description:'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase.',