List Connected Accounts
Get all Connected Accounts associated with your Account
Retrieve list of Connected Accounts
GET
https://connect.getseam.com/connected_accounts/list
Headers
Name
Type
Description
Authorization*
String
Bearer <API_KEY>
{
"connected_accounts": [
{
"connected_account_id": "9dcedcb3-5ede-4b66-9e07-f9ef97b3c29b",
"created_at": "2022-08-24T10:38:05.128Z",
"custom_metadata": {},
"user_identifier": {
"email": "[email protected]"
},
"account_type": "schlage",
"errors": []
}
],
"ok": true
}
Code Example
seam.connected_accounts.list
# [<Seam::ConnectedAccount:0x00ed1e8
# connected_account_id="282f9d15-d979-4de7-b4eb-7097c401e910"
# created_at="2022-07-06T09:43:07.125Z"
# user_identifier=nil
# account_type="smartthings">]
Parameters
This method doesn't take any parameters.
Response
This section shows the JSON response returned by the API. Since each language encapsulates this response inside objects specific to that language and/or implementation, the actual type in your language might differ from what’s written here.
JSON format
{
"connected_accounts": [
{
"connected_account_id": "9dcedcb3-5ede-4b66-9e07-f9ef97b3c29b",
"created_at": "2022-08-24T10:38:05.128Z",
"user_identifier": {
"email": "[email protected]"
},
"account_type": "schlage",
"errors": []
}
],
"ok": true
}
Last updated
Was this helpful?