Filtering Connected Accounts by Custom Metadata
When listing connected accounts, you can filter by custom metadata.
When you use List Connected Accounts, you can filter the list by one or more custom metadata pairs. Include the custom_metadata_has
parameter with a JSON string that specifies the desired key:value pairs.
Request:
connected_accounts = seam.connected_accounts.list(
custom_metadata_has = {
"internal_account_id": "user-1"
}
)
pprint(connected_accounts)
Response:
[ConnectedAccount(connected_account_id='c993818b-bf3c-4836-bef4-9a76d89bf1d3',
created_at='2024-01-05T07:20:07.692Z',
user_identifier={'username': 'jane'},
account_type='visionline',
errors=[],
custom_metadata={"internal_account_id": "user-1"}),
...]
Last updated
Was this helpful?