GET
/
api
/
v1
/
discounts
curl --request GET \
  --url https://app.flowglad.com/api/v1/discounts \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "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"
    }
  ],
  "currentCursor": "<string>",
  "nextCursor": "<string>",
  "hasMore": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

Query Parameters

cursor
string
limit
number
Required range: 1 <= x <= 100

Response

200
application/json
Successful response
data
object[]
required

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.

hasMore
boolean
required
total
number
required
currentCursor
string
nextCursor
string