List Credentials with Access to an Entrance
POST /acs/entrances/list_credentials_with_access β { acs_credentials: [acs_credential, β¦] }
Returns a list of all credentials with access to a specified entrance.
Request
await seam.acs.entrances.listCredentialsWithAccess({
acs_entrance_id: "123e4567-e89b-12d3-a456-426614174000",
});
Response
[
{
"acs_credential_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_user_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",
"card_number": "text",
"is_issued": false,
"issued_at": "2024-10-15T12:54:04.155Z",
"access_method": "code",
"external_type": "pti_card",
"external_type_display_name": "text",
"created_at": "2024-10-15T12:54:04.155Z",
"workspace_id": "123e4567-e89b-12d3-a456-426614174000",
"starts_at": "text",
"ends_at": "text",
"is_multi_phone_sync_credential": false,
"is_latest_desired_state_synced_with_provider": false,
"latest_desired_state_synced_with_provider_at": "2024-10-15T12:54:04.155Z"
}
]
Authentication Methods
API key
Client session token
Personal access token Must also include the
seam-workspace
header in the request.
Request Parameters
acs_entrance_id
acs_entrance_id
Type: string
Required: Yes
include_if
include_if
Type: array
Required: No
Return Type
Array<acs_credential>
Last updated
Was this helpful?