Skip to main content
POST
List refunds (live Stripe read)

Authorizations

Authorization
string
header
required

Authorization: Bearer <api key>. The key resolves to your organization; every response is scoped to it. An organization field in the request body is optional, but if present it must match, or the request is rejected.

Body

application/json
clinic
string
required

Required. Names the clinic whose connected Stripe account to read. There is no organization-wide Stripe read.

organization
string

Optional. If present, must match the organization your API key resolves to, or the request is rejected with 400.

limit
integer<int32>
default:100

Capped at 100, Stripe's own page limit.

starting_after
string

Stripe cursor: the id of the last item on the previous page. There is no offset -- Stripe paginates by cursor.

created_gte
integer

Inclusive lower bound on Stripe's created, epoch seconds.

created_lte
integer

Inclusive upper bound on Stripe's created, epoch seconds.

Response

A page of Stripe Refund objects, proxied live from Stripe.

Stripe's own list envelope, reduced to the two fields this contract promises. Each item is a raw Stripe object for the resource -- V3 does not reshape these, matching the live endpoints.

data
object[]
has_more
boolean