Skip to main content
GET
/
stripe
/
connect
/
accounts
/
{accountId}
/
coupons
List Coupons
curl --request GET \
  --url https://api.chat-dash.com/v1/public/stripe/connect/accounts/{accountId}/coupons \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "id": "SUMMER20",
      "object": "coupon",
      "amount_off": null,
      "created": 1700000000,
      "currency": "usd",
      "duration": "once",
      "duration_in_months": null,
      "livemode": true,
      "max_redemptions": null,
      "metadata": {},
      "name": "Summer Sale",
      "percent_off": 25,
      "redeem_by": null,
      "times_redeemed": 0,
      "valid": true
    }
  ],
  "has_more": false,
  "next_cursor": null
}

Headers

Authorization
string
required

All requests to the ChatDash API must be validated with the agency API Key found on your agency profile

Path Parameters

accountId
string
required

The Stripe connected account ID

Query Parameters

limit
integer
default:50

Max number of coupons to return (1-100). Defaults to 50.

Required range: 1 <= x <= 100
starting_after
string

Pagination cursor (returns results after this ID).

Response

OK

data
object[]
has_more
boolean
Example:

false

next_cursor
string | null
Example:

null