Get an Entrance
Get a specified entrance
Returns a specified entrance.
Request
Specify the desired entrance by including the corresponding acs_entrance_id
in the request body.
Request Body Parameters
Parameter
Type
Description
acs_entrance_id
String (UUID) Required
ID of the desired entrance
Sample Request
seam.acs.entrances.get(
acs_entrance_id="55555555-5555-5555-5555-555555555555"
)
Response
Returns an acs_entrance
containing the following properties:
Property
Description
acs_entrance_id
ID of the entrance
acs_system_id
ID of the access control system that contains the entrance
workspace_id
ID of the workspace that contains the user
display_name
Display name for the entrance
XXX_metadata
ACS manufacturer-specific metadata for the entrance, where XXX
is the manufacturer
created_at
Date and time at which the entrance was created
Sample Response
AcsEntrance(
acs_entrance_id: '55555555-5555-5555-5555-555555555555',
acs_system_id: '11111111-1111-1111-1111-111111111111',
workspace_id: '00000000-0000-0000-0000-000000000000',
visionline_metadata: {
profiles: [
{
visionline_door_profile_id: 'Guest Door',
visionline_door_profile_type: 'BLE'
}
],
door_name: 'Guest Lock 2',
door_category: 'guest'
},
latch_metadata: null,
display_name: 'Guest Lock 2',
created_at: '2024-03-26T14:31:18.979Z'
)
Last updated
Was this helpful?