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
facebook-ads-manager
Facebook Ads API manager with OAuth — list campaigns, get insights, ad account info, and ads with creative details. Login to any Facebook/Instagram account.
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.