Searching for example of Paid Membership API

I’m looking for a proper example of the Members List API output, as there does not seem to be any examples in the forum or documentation.

To be precise I’m searching for how the Stripe functionality is implemented and what kind of parameters can be found there. As I can not manually test it myself, I’d be thankful for any sort of help (in case you have a blog with Stripe users). Please do not leak sensitive information.

I search for the contents of this
“stripe”: {
“subscriptions”: [ ]
},


General Example (GET /ghost/api/v3/admin/members)
{
“members”: [
{
“id”: “ID”,
“uuid”: “UUID”,
“email”: “email@domain.tld”,
“name”: “Name”,
“note”: null,
“subscribed”: true,
“created_at”: “DATE”,
“updated_at”: “DATE”,
“stripe”: {
“subscriptions”:
},
“comped”: false
}
],
“meta”: {
“pagination”: {
“page”: 1,
“limit”: 15,
“pages”: 1,
“total”: 1,
“next”: null,
“prev”: null
}
}

1 Like

Did you see this piece of documentation in our Members docs?
https://ghost.org/docs/members/member-price-data/#member-subscriptions

@DavidDarnes I did not — thank you very much!

1 Like