List Connect Webviews
List all Connect Webviews on the Account
Fetch list of Connect Webviews
GET
https://connect.getseam.com/connect_webviews/list
Headers
Name
Type
Description
Authorization
String
Bearer <API_KEY>
{
"connect_webviews": [
{
"connect_webview_id": "4f98efc0-df9c-4be0-b5ac-1c7a60e44ad1",
"custom_metadata": {},
"url": "https://connect.getseam.com/connect_webviews/view?connect_webview_id=4f98efc0-df9c-4be0-b5ac-1c7a60e44ad1&auth_token=Q7RPKrBwpdS9pLaHRbme7SF491SHv6dUv",
"workspace_id": "f97073eb-c003-467a-965b-e6dba3a0131d",
"device_selection_mode": "none",
"accepted_providers": [
"schlage"
],
"selected_provider": "schlage",
"accepted_devices": [],
"any_provider_allowed": false,
"any_device_allowed": null,
"created_at": "2022-08-24T08:58:00.444Z",
"login_successful": false,
"authorized_at": null,
"status": "pending",
"connected_account_id": null
}
],
"ok": true
}
Code Example
seam.connect_webviews.list
# [<Seam::ConnectWebview:0x00bd4e8
# url="https://connect.getseam.com/connect_webviews/view?connect_webview_id=48880840-278b-4f55-bdc4-42ba8611952b&auth_token=asjDHKADH8392hf923FH"
# status="pending"
# created_at="2022-07-06T14:18:41.556Z"
# workspace_id="182ad8b2-4212-4640-873b-343c10b11c91"
# accepted_devices=[]
# login_successful=false
# accepted_providers=["august"]
# selected_provider="august"
# any_device_allowed=nil
# connect_webview_id="48880840-278b-4f55-bdc4-42ba8611952b"
# any_provider_allowed=false
# device_selection_mode="none">]
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
{
"connect_webviews": [
{
"connect_webview_id": "4f98efc0-df9c-4be0-b5ac-1c7a60e44ad1",
"url": "https://connect.getseam.com/connect_webviews/view?connect_webview_id=4f98efc0-df9c-4be0-b5ac-1c7a60e44ad1&auth_token=Q7RPKrBwpdS9pLaHRbme7SF491SHv6dUv",
"workspace_id": "f97073eb-c003-467a-965b-e6dba3a0131d",
"device_selection_mode": "none",
"accepted_providers": [
"schlage"
],
"selected_provider": "schlage",
"accepted_devices": [],
"any_provider_allowed": false,
"any_device_allowed": null,
"created_at": "2022-08-24T08:58:00.444Z",
"login_successful": false,
"authorized_at": null,
"status": "pending",
"connected_account_id": null
}
],
"ok": true
}
Last updated
Was this helpful?