GET
/v1/linked_accounts/{account}/ownersList Financial Connections Account owners
Lists the owners associated with a Financial Connections Account's ownership record. Supply account and the required ownership identifier, then use limit and cursor parameters to paginate the owner list.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
accountstringrequired
The unique identifier of the Financial Connections Account.
ending_beforestringoptional
An object ID cursor that identifies the end of the current position when retrieving a previous page.
expandarray<string>optional
Fields to expand in the response; each value can contain up to 5000 characters.
limitintegeroptional
Maximum number of owners to return, from 1 to 100. Defaults to 10 when omitted.
ownershipstringrequired
The ownership object identifier from which to retrieve owners.
starting_afterstringoptional
An object ID cursor that identifies the end of the current page when retrieving the next page.
200Returns a list object containing account owners in `data`, a `has_more` pagination flag, the list object type, and its access 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`.
urlstringrequired
The URL where this list can be accessed.
defaultReturned when the API reports an error; the response contains an `error` object with a `type` field.
errorobjectrequired
Error handling
account and ownership must be strings no longer than 5000 characters, and ownership must identify the ownership object whose owners you want to retrieve. limit must be between 1 and 100 and defaults to 10; use starting_after or ending_before for pagination.