List Accessible Entrances
Returns a list of all entrances to which a credential grants access.
Returns a list of all entrances to which a credential grants access.
Code:
await seam.acs.credentials.listAccessibleEntrances({
acs_credential_id: "9407e456-b8ac-475a-8431-fee76cedda03",
});
Output:
[
{
"acs_entrance_id": "f74e4879-5991-4e2f-a368-888983dcfbfc",
"acs_system_id": "6a74a969-94ea-4383-b5cf-5e7da8c113d1",
"connected_account_id": "1b9a3e0d-443f-4063-b619-4ca7e2a97751",
"created_at": "2025-06-15T16:54:17.946495Z",
"display_name": "Main Entrance",
"errors": [],
"visionline_metadata": {
"door_category": "guest",
"door_name": "Main Entrance",
"profiles": [
{
"visionline_door_profile_id": "7f8e9d0a-1b2c-3d4e-5f6a-7b8c9d0e1f2a",
"visionline_door_profile_type": "BLE"
}
]
}
}
]
Request Parameters
acs_credential_id
String (Required)
ID of the credential for which you want to retrieve all entrances to which the credential grants access.
Response
Array of acs_entrances
{
"acs_entrance_id": "f74e4879-5991-4e2f-a368-888983dcfbfc",
"acs_system_id": "6a74a969-94ea-4383-b5cf-5e7da8c113d1",
"connected_account_id": "1b9a3e0d-443f-4063-b619-4ca7e2a97751",
"created_at": "2025-06-15T16:54:17.946495Z",
"display_name": "Main Entrance",
"errors": [],
"visionline_metadata": {
"door_category": "guest",
"door_name": "Main Entrance",
"profiles": [
{
"visionline_door_profile_id": "7f8e9d0a-1b2c-3d4e-5f6a-7b8c9d0e1f2a",
"visionline_door_profile_type": "BLE"
}
]
}
}
Last updated
Was this helpful?