Create a coupon

How to create a coupon via API

To create a new coupon, send a POST request to the /api/coupons endpoint, passing the resource arguments in the request body.

Request

POST https://yourdomain.commercelayer.io/api/coupons

Arguments

Body Parameter
Type
Required

type

string

Required

attributes.code

string

Required

attributes.customer_single_use

boolean

Optional, default is 'false'

attributes.usage_limit

integer

Optional

attributes.recipient_email

string

Optional

attributes.expires_at

datetime

Optional, default is 'null'

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.metadata

object

Optional

relationships.promotion_rule

object

Required

relationships.coupon_recipient

object

Optional

relationships.tags

array

Optional

Example

The following request creates a new coupon:

Last updated