Stripe Coupon Creator
ACTIONCreates Stripe coupon codes with percentage discounts. Accepts percentOff, couponCode, duration, maxRedemptions.
Endpoints
· 1POST/create-couponCreates a Stripe coupon code with percent off, optional duration, and max redemptions
Input Schema
{
"type": "object",
"required": [
"percentOff",
"couponCode"
],
"properties": {
"duration": {
"enum": [
"once",
"forever",
"repeating"
],
"type": "string",
"description": "How long the coupon lasts: once, forever, or repeating"
},
"couponCode": {
"type": "string",
"description": "The coupon code to create"
},
"percentOff": {
"type": "number",
"description": "Discount percentage (1-100)"
},
"maxRedemptions": {
"type": "number",
"description": "Maximum number of times this coupon can be redeemed"
},
"durationInMonths": {
"type": "number",
"description": "Number of months the coupon applies if duration is repeating"
}
}
}Required Secrets
· 1STRIPE_SECRET_KEY
✦
Similar ACTION Pieces
File Explorer
Web-based file explorer for browsing the workspace directory structure and viewing file contents with syntax highlighting. Read-only.
Voiceover Service
ElevenLabs-powered voiceover, sound effects, and music generation service. Used to add spoken narration and audio to media content.
R2 Asset Manager
Cloudflare R2-backed asset storage service. Handles uploads, URL imports, and file serving with globally accessible shareable URLs.