Discounts
Create discount
Discounts
Create discount
POST
/
api
/
v1
/
discounts
curl --request POST \
--url https://app.flowglad.com/api/v1/discounts \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"discount": {
"livemode": true,
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"amount": 123,
"amountType": "percent",
"active": true,
"duration": "once",
"numberOfPayments": "null"
}
}'
{
"discount": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"amount": 123,
"amountType": "percent",
"active": true,
"duration": "once",
"numberOfPayments": "null"
}
}
Authorizations
Body
application/json
A discount record, which describes a discount that can be applied to purchases or subscriptions. Discounts can be one-time, have a fixed number of payments, or be applied indefinitely.
Required string length:
3 - 20
safeZodPositiveInteger
Available options:
percent
, fixed
Available options:
once
Available options:
null
Response
200
application/json
Successful response
A discount record, which describes a discount that can be applied to purchases or subscriptions. Discounts can be one-time, have a fixed number of payments, or be applied indefinitely.
Required string length:
3 - 20
safeZodPositiveInteger
Available options:
percent
, fixed
Available options:
once
Available options:
null
curl --request POST \
--url https://app.flowglad.com/api/v1/discounts \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"discount": {
"livemode": true,
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"amount": 123,
"amountType": "percent",
"active": true,
"duration": "once",
"numberOfPayments": "null"
}
}'
{
"discount": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"name": "<string>",
"code": "<string>",
"amount": 123,
"amountType": "percent",
"active": true,
"duration": "once",
"numberOfPayments": "null"
}
}