List Credentials with Access to an Entrance
Get all credentials with access to a specified entrance
Returns a list of all credentials with access to a specified entrance.
Returns a list of all credentials with access to a specified entrance.
ID of the entrance for which you want to list all credentials that grant access.
POST /acs/entrances/list_credentials_with_access HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer Client Session Token
Content-Type: application/json
Accept: */*
Content-Length: 104
{
"acs_entrance_id": "123e4567-e89b-12d3-a456-426614174000",
"include_if": [
"visionline_metadata.is_valid"
]
}
{
"acs_credentials": [
{
"acs_credential_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_user_id": "123e4567-e89b-12d3-a456-426614174000",
"user_identity_id": "123e4567-e89b-12d3-a456-426614174000",
"connected_account_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_credential_pool_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_system_id": "123e4567-e89b-12d3-a456-426614174000",
"parent_acs_credential_id": "123e4567-e89b-12d3-a456-426614174000",
"display_name": "text",
"code": "text",
"is_one_time_use": true,
"card_number": "text",
"is_issued": true,
"issued_at": "2025-07-01T04:52:26.381Z",
"access_method": "code",
"external_type": "pti_card",
"external_type_display_name": "text",
"created_at": "2025-07-01T04:52:26.381Z",
"workspace_id": "123e4567-e89b-12d3-a456-426614174000",
"starts_at": "text",
"ends_at": "text",
"errors": [
{
"error_code": "text",
"message": "text"
}
],
"warnings": [
{
"created_at": "2025-07-01T04:52:26.381Z",
"message": "text",
"warning_code": "waiting_to_be_issued"
}
],
"is_multi_phone_sync_credential": true,
"is_latest_desired_state_synced_with_provider": true,
"latest_desired_state_synced_with_provider_at": "2025-07-01T04:52:26.381Z",
"visionline_metadata": {
"card_function_type": "guest",
"joiner_acs_credential_ids": [
"123e4567-e89b-12d3-a456-426614174000"
],
"guest_acs_entrance_ids": [
"123e4567-e89b-12d3-a456-426614174000"
],
"common_acs_entrance_ids": [
"123e4567-e89b-12d3-a456-426614174000"
],
"is_valid": true,
"auto_join": true,
"card_id": "text",
"credential_id": "text"
},
"assa_abloy_vostio_metadata": {
"auto_join": true,
"override_guest_acs_entrance_ids": [
"text"
],
"key_id": "text",
"key_issuing_request_id": "text",
"door_names": [
"text"
],
"endpoint_id": "text"
},
"is_managed": true
}
],
"ok": true
}
Request
Specify the entrance for which you want to retrieve all credentials with access by including the corresponding acs_entrance_id
in the request body.
Request Body Parameters
acs_entrance_id
String (UUID) Required
ID of the entrance for which you want to retrieve all credentials with access
Sample Request
seam.acs.entrances.list_credentials_with_access(
acs_entrance_id="55555555-5555-5555-5555-555555555555"
)
Response
Returns an acs_credentials
array, in which each returned acs_credential
contains the following properties:
acs_credential_id
ID of the credential
acs_user_id
ID of the user to whom the credential belongs
parent_acs_credential_id
ID of the parent ACS credential
display_name
Display name that corresponds to the credential type
code
Access (PIN) code for the credential
acs_system_id
ID of the access control system that contains the credential
access_method
Access method for the credential. Supported values: code
, card
, mobile_key
external_type
Brand-specific terminology for the credential type
Supported values: pti_card
, brivo_credential
, hid_credential
, visionline_card
external_type_display_name
Display name that corresponds to the brand-specific terminology for the credential type
workspace_id
ID of the workspace that contains the credential
created_at
Date and time at which the credential was created
starts_at
Date and time at which the credential validity starts, in ISO 8601 format
ends_at
Date and time at which the credential validity ends, in ISO 8601 format
is_multi_phone_sync_credential
Indicates whether the credential is a multi-phone sync credential
XXX_metadata
ACS manufacturer-specific metadata for the entrance, where XXX
is the manufacturer
Sample Response
[
AcsCredential(
acs_credential_id='77777777-7777-7777-7777-777777777777',
acs_user_id='33333333-3333-3333-3333-333333333333',
parent_acs_credential_id='66666666-6666-6666-6666-666666666666',
display_name='Credential 2',
code=null,
acs_system_id='11111111-1111-1111-1111-111111111111',
access_method='mobile_key',
external_type='visionline_card',
external_type_display_name='Visionline Card',
errors=[],
warnings=[],
workspace_id='00000000-0000-0000-0000-000000000000',
created_at='2024-04-09T14:30:56.343Z',
starts_at='2024-04-09T14:30:55.688Z',
ends_at='2024-03-04T10:40:00.000Z',
is_multi_phone_sync_credential=False,
visionline_metadata={}
),
...
]
Last updated
Was this helpful?