POST
/
coupons

Authorizations

Authorization
string
header
required

API Keys can be issued in the Orb's web application.

Body

application/json
discount
object
required
redemption_code
string
required

This string can be used to redeem this coupon for a given subscription.

duration_in_months
integer | null

This allows for a coupon's discount to apply for a limited time (determined in months); a null value here means "unlimited time".

Required range: 1 < x < 120
max_redemptions
integer | null

The maximum number of redemptions allowed for this coupon before it is exhausted;null here means "unlimited".

Required range: 1 < x < 1000000000

Response

201 - application/json

A coupon represents a reusable discount configuration that can be applied either as a fixed or percentage amount to an invoice or subscription. Coupons are activated using a redemption code, which applies the discount to a subscription or invoice. The duration of a coupon determines how long it remains available for use by end users.

archived_at
string | null
required

An archived coupon can no longer be redeemed. Active coupons will have a value of null for archived_at; this field will be non-null for archived coupons.

discount
object
required
duration_in_months
integer | null
required

This allows for a coupon's discount to apply for a limited time (determined in months); a null value here means "unlimited time".

id
string
required

Also referred to as coupon_id in this documentation.

max_redemptions
integer | null
required

The maximum number of redemptions allowed for this coupon before it is exhausted; null here means "unlimited".

redemption_code
string
required

This string can be used to redeem this coupon for a given subscription.

times_redeemed
integer
required

The number of times this coupon has been redeemed.