Account Owners
Loading...
Loading...
An Owner in Quiltt represents the details of a verified Account owner on a given Account. Account Owners are automatically obtained for Connections enabled with the ACCOUNT_OWNERS product.
Owners are available through Accounts in the GraphQL API. For example, we can fetch the list of Owners for all accounts on a profile with the below query:
query AccountOwners {
accounts {
id
name
kind
owners {
id
at
emails {
address
}
addresses {
city
country
countryCode
line1
postalCode
region
regionCode
}
names {
full
}
phones {
number
}
}
}
}
{
"data": {
"accounts": [
{
"id": "acct_132KkLPKgYKGnBm7czugFY",
"name": "Spending",
"kind": "DEPOSITORY",
"owners": [
{
"id": "own_1Fmcup1waUWC580xP4siFO",
"at": "2026-03-02T01:53:41Z",
"emails": [
{
"address": "mock@quiltt.dev"
}
],
"addresses": [
{
"city": "Anytown",
"country": "United States of America",
"countryCode": "USA",
"line1": "123 Main St",
"postalCode": "12345",
"region": "New York",
"regionCode": "NY"
}
],
"names": [
{
"full": "John Doe"
}
],
"phones": [
{
"number": "+11234567890"
}
]
}
]
},
]
}
}
account.owners_verifiedYou can subscribe to new owner data by listening to the account.owners_verified webhook.
{
"id": "evt_132KkExx5EIhvJmrYqIh8Y",
"at": "2026-02-02T01:53:41Z",
"type": "account.owners_verified",
"profile": {
"id": "p_132KkEtQv92QhqZ8xDAhck",
"uuid": "019c1c0e-3571-7337-8238-542bc1d2c0ae",
"metadata": null
},
"record": {
"id": "acct_132KkEtZJ7LHnqM8apAwXz",
"connectionId": "conn_132KkEtV70C4z4KI2Rqq9S",
"state": "OPEN",
"metadata": null,
"at": "2026-02-02T01:53:41Z"
},
"metadata": {}
}