List Systems

Get all access control systems

Returns a list of all access control systems.

Request

To filter the list of returned access control systems by a specific connected account ID, include the connected_account_id in the request body. If you omit the connected_account_id parameter, the response includes all access control systems connected to your workspace.

Request Body Parameters

ParameterTypeDescription

connected_account_id

String (UUID) Optional

ID of the connected account

Sample Request

seam.acs.systems.list()

Response

Returns an acs_systems array, in which each returned access control system (acs_system) contains the following properties:

PropertyDescription

acs_system_id

ID of the access control system

name

Name of the access control system

workspace_id

ID of the workspace that contains the access control system

created_at

Date and time at which the access control system was created

external_type

Brand-specific terminology for the access control system type

external_type_display_name

Display name that corresponds to the brand-specific terminology for the access control system type

connected_account_ids

Array of connected account IDs associated with the access control system

image_url

URL for the image that represents the access control system

image_alt_text

Alternative text for the access control system image

Sample Response

[
  AcsSystem(
    acs_system_id='11111111-1111-1111-1111-111111111111',
    name='Example Inc',
    workspace_id='00000000-0000-0000-0000-000000000000',
    created_at='2023-11-30T06:27:14.961Z',
    external_type='pti_site',
    external_type_display_name='PTI site",
    connected_account_ids=[
      '11111111-1111-1111-1111-222222222222'
    ],
    image_url='https://connect.getseam.com/assets/images/acs_systems/pti_site.png',
    image_alt_text='PTI site Logo'
  ),
  ...
]

Last updated

Logo

© Seam Labs, Inc. All rights reserved.