GET
/
api
/
v1
/
discounts
/
{id}
curl --request GET \
  --url https://app.flowglad.com/api/v1/discounts/{id} \
  --header 'Authorization: <api-key>'
{
  "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

Authorization
string
header
required

Path Parameters

id
string
required

Response

200
application/json
Successful response
discount
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.