Sample - Stripe API
GET/v1/financial_connections/accounts/{account}/owners

List Financial Connections account owners

Lists the owners associated with a Financial Connections account's ownership object. Supply ownership to select the ownership record, and use cursor parameters with limit to paginate the owners. Each result can include the owner's name, contact details, ownership reference, and refresh timestamp.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

6 parameters
accountstringrequired
The unique identifier of the Financial Connections account; the identifier can contain up to 5,000 characters.
ending_beforestringoptional
A cursor containing an owner object ID; returns the page before that position.
expandarray<string>optional
Specifies which fields in the response to expand; each field name can contain up to 5,000 characters.
limitintegeroptional
The number of owners to return. Must be between 1 and 100 and defaults to 10 when omitted.
ownershipstringrequired
The identifier of the ownership object whose owners to retrieve; the identifier can contain up to 5,000 characters.
starting_afterstringoptional
A cursor containing an owner object ID; returns the page after that position.

2 status codes
200Returns a list of account owner objects with owner details, a `has_more` indicator, the list object type, and the list URL.
dataarray<AccountOwner>required
Details about each object.
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
Allowed:list
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired

Error handling

account and ownership must identify the account and ownership object to query. limit must be an integer between 1 and 100 and defaults to 10 when omitted; cursor values must identify list positions.