From e9fb305f0f94e2f3f589829383a70ce511486d22 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Fri, 2 Aug 2024 11:35:13 -0700 Subject: [PATCH] Simplify test --- docs/api/acs/systems/list.md | 149 +---------------------------------- 1 file changed, 2 insertions(+), 147 deletions(-) diff --git a/docs/api/acs/systems/list.md b/docs/api/acs/systems/list.md index 5208b37c..c253df70 100644 --- a/docs/api/acs/systems/list.md +++ b/docs/api/acs/systems/list.md @@ -1,156 +1,11 @@ --- description: "Returns a list of all [access control systems](../../../capability-guides/access-systems.md). -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 +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." --- # List ACS Systems Returns a list of all [access control systems](../../../capability-guides/access-systems.md). - -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 and Response - - - - - - - - - - - - - - - - -
ParameterTypeDescription
connected_account_idString (UUID)
Optional
ID of the connected account by which to filter the list of returned access control systems.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PropertyDescription
acs_system_idID of the `acs_system`.
can_add_acs_users_to_acs_access_groupsIndicates whether the `acs_system` supports [adding users to access groups](../../../capability-guides/access-systems/assigning-users-to-access-groups#add-an-acs-user-to-an-access-group.md). See also [Access Group-based Access Control Systems](../../../capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems.md).
can_automate_enrollmentIndicates whether it is possible to [launch enrollment automations](../../../capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut.md) for the `acs_system`.
can_create_acs_access_groupsIndicates whether the `acs_system` supports creating [access groups](../../../capability-guides/access-systems/assigning-users-to-access-groups.md). See also [Access Group-based Access Control Systems](../../../capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems.md).
can_remove_acs_users_from_acs_access_groupsIndicates whether the `acs_system` supports [removing users from access groups](../../../capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group.md). See also [Access Group-based Access Control Systems](../../../capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems.md).
connected_account_idsIDs of the [connected accounts](../../../core-concepts/connected-accounts.md) associated with the `acs_system`.
created_atDate and time at which the `acs_system` was created.
errorsErrors associated with the `acs_system`.
external_typeBrand-specific terminology for the `acs_system` type.
external_type_display_nameDisplay name that corresponds to the brand-specific terminology for the `acs_system` type.
image_alt_textAlternative text for the `acs_system` image.
image_urlURL for the image that represents the `acs_system`.
nameName of the `acs_system`.
system_type
system_type_display_name
visionline_metadata
warnings
workspace_idID of the [workspace](../../../core-concepts/workspaces.md) that contains the `acs_system`.
- -## Samples - -{% tabs %} - {% tab title="JavaScript" %} - ### Request - ```javascript - await seam.acs.systems.list({"connected_account_id":"8d7e0b3a-b889-49a7-9164-4b71a0506a33"}) - ``` - - ### Response - ```javascript - [{"acs_system_id":"8d7e0b3a-b889-49a7-9164-4b71a0506a33"}] - ``` - {% endtab %} - {% tab title="Python" %} - ### Request - ```python - seam.acs.systems.list(connected_account_id="8d7e0b3a-b889-49a7-9164-4b71a0506a33") - ``` - - ### Response - ```python - AcsSystems(0={"acs_system_id":"8d7e0b3a-b889-49a7-9164-4b71a0506a33"}) - ``` - {% endtab %} - {% tab title="PHP" %} - ### Request - ```php - $seam->acs->systems->list(connected_account_id:"8d7e0b3a-b889-49a7-9164-4b71a0506a33") - ``` - - ### Response - ```php - [{"acs_system_id":"8d7e0b3a-b889-49a7-9164-4b71a0506a33"}] - ``` - {% endtab %} -{% endtabs %}