Listing Credentials and Associated Entrances
Learn how to list entrances associated with a credential and credentials associated with an entrance.
List Entrances Associated with a Credential
seam.acs.credentials.list_accessible_entrances(
acs_credential_id="66666666-6666-6666-6666-666666666666"
)[
AcsEntrance(
acs_entrance_id='55555555-5555-5555-5555-555555555555',
acs_system_id='11111111-1111-1111-1111-111111111111',
display_name='Guest Lock 2',
...
),
...
]# Use GET or POST.
curl -X 'GET' \
'https://connect.getseam.com/acs/credentials/list_accessible_entrances' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_credential_id": "66666666-6666-6666-6666-666666666666"
}'{
"acs_entrances": [
{
"acs_entrance_id": "55555555-5555-5555-5555-555555555555",
"acs_system_id": "11111111-1111-1111-1111-111111111111",
"display_name": "Guest Lock 2",
...
},
...
],
"ok": true
}List Credentials Associated with an Entrance
Last updated
Was this helpful?

