Get a Connected Account
Returns a specified connected account.
POST /connected_accounts/get ⇒ { connected_account }
Request Parameters
connected_account_id
String
ID of the connected account that you want to get.
email
String
Email address associated with the connected account that you want to get.
Response
Examples
Get a connected account
Specify the connected_account_id
of the connected account that you want to get.
Code
await seam.connectedAccounts.get({
connected_account_id: "23e4eb21-6e93-48c4-a077-bf503246d47c",
});
Output
[
{
"connected_account_id": "23e4eb21-6e93-48c4-a077-bf503246d47c",
"created_at": "2022-08-24T10:38:05.128Z",
"account_type": "schlage"
}
]
Last updated
Was this helpful?