Verifying Successful Account Connection
Learn how to find out when your user's device or ACS account has connected successfully to Seam.
Polling
Property
Value when connected successfully
updated_connect_webview = seam.connect_webviews.get(created_connect_webview.connect_webview_id)ConnectWebview(
connect_webview_id='12345678-1234-1234-1234-123456789012',
status='authorized',
login_successful=True,
connected_account_id='11111111-1111-1111-1111-222222222222',
...
)curl -X 'GET' \
'https://connect.getseam.com/connect_webviews/get' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${SEAM_API_KEY}" \
-H 'Content-Type: application/json' \
-d "{
\"connect_webview_id\": \"${connect_webview_id}\"
}"{
"connect_webview": {
"connect_webview_id": "12345678-1234-1234-1234-123456789012",
"status": "authorized",
"login_successful": true,
"connected_account_id": "11111111-1111-1111-1111-222222222222",
...
},
"ok": true
}Webhook
Event Listening
PreviousEmbedding a Connect Webview in Your AppNextRetrieving Devices or Access Control Systems Connected Through a Connect Webview
Last updated
Was this helpful?

