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
Shared Terminal
Full-featured web terminal with Node.js, Python, Deno, git, and build tools — running in a Podman container with Ubuntu 24.04
Coolify Logs Watcher
Polls Coolify API for application logs, stores in SQLite, exposes search endpoints for support email triage. Monitors free-copier-py, free-copier-express, and free-copier-next runtime logs. Used by the Events pipeline (Sydney) to find relevant errors when drafting support responses.
Coverter
Converts HTML content to PDF using headless Chromium (Puppeteer). Accepts raw HTML or a URL, returns a downloadable PDF.