List ACS Systems Associated with a User Identity
POST /user_identities/list_acs_systems ⇒ { acs_systems: [acs_system, …] }
Returns a list of all access control systems associated with a specified user identity.
Request
await seam.userIdentities.listAcsSystems({
user_identity_id: "5c945ab5-c75e-4bcb-8e5f-9410061c401f",
});
Response
[
{
"acs_system_id": "6737e186-8d54-48ce-a7da-a0be4d252172",
"name": "Assa Abloy Credential Service",
"workspace_id": "398d80b7-3f96-47c2-b85a-6f8ba21d07be",
"created_at": "2024-01-05T07:16:51.971Z",
"system_type": "assa_abloy_credential_service",
"system_type_display_name": "Assa Abloy Credential Service",
"external_type": "assa_abloy_credential_service",
"external_type_display_name": "Assa Abloy Credential Service",
"connected_account_ids": ["dc08066f-d9b8-42f0-9c4b-c781cd900153"]
}
]
Request
seam.user_identities.list_acs_systems(
user_identity_id="5c945ab5-c75e-4bcb-8e5f-9410061c401f"
)
Response
[
AcsSystem(
acs_system_id="6737e186-8d54-48ce-a7da-a0be4d252172",
name="Assa Abloy Credential Service",
workspace_id="398d80b7-3f96-47c2-b85a-6f8ba21d07be",
created_at="2024-01-05T07:16:51.971Z",
system_type="assa_abloy_credential_service",
system_type_display_name="Assa Abloy Credential Service",
external_type="assa_abloy_credential_service",
external_type_display_name="Assa Abloy Credential Service",
connected_account_ids=["dc08066f-d9b8-42f0-9c4b-c781cd900153"],
)
]
Request
seam.user_identities.list_acs_systems(user_identity_id: "5c945ab5-c75e-4bcb-8e5f-9410061c401f")
Response
[{"acs_system_id" => "6737e186-8d54-48ce-a7da-a0be4d252172", "name" => "Assa Abloy Credential Service", "workspace_id" => "398d80b7-3f96-47c2-b85a-6f8ba21d07be", "created_at" => "2024-01-05T07:16:51.971Z", "system_type" => "assa_abloy_credential_service", "system_type_display_name" => "Assa Abloy Credential Service", "external_type" => "assa_abloy_credential_service", "external_type_display_name" => "Assa Abloy Credential Service", "connected_account_ids" => ["dc08066f-d9b8-42f0-9c4b-c781cd900153"]}]
Request
<?php
$seam->user_identities->list_acs_systems(
user_identity_id: "5c945ab5-c75e-4bcb-8e5f-9410061c401f"
);
Response
<?php
[
[
"acs_system_id" => "6737e186-8d54-48ce-a7da-a0be4d252172",
"name" => "Assa Abloy Credential Service",
"workspace_id" => "398d80b7-3f96-47c2-b85a-6f8ba21d07be",
"created_at" => "2024-01-05T07:16:51.971Z",
"system_type" => "assa_abloy_credential_service",
"system_type_display_name" => "Assa Abloy Credential Service",
"external_type" => "assa_abloy_credential_service",
"external_type_display_name" => "Assa Abloy Credential Service",
"connected_account_ids" => ["dc08066f-d9b8-42f0-9c4b-c781cd900153"],
],
];
Request
seam user-identities list-acs-systems --user_identity_id "5c945ab5-c75e-4bcb-8e5f-9410061c401f"
Response
[
{
"acs_system_id": "6737e186-8d54-48ce-a7da-a0be4d252172",
"name": "Assa Abloy Credential Service",
"workspace_id": "398d80b7-3f96-47c2-b85a-6f8ba21d07be",
"created_at": "2024-01-05T07:16:51.971Z",
"system_type": "assa_abloy_credential_service",
"system_type_display_name": "Assa Abloy Credential Service",
"external_type": "assa_abloy_credential_service",
"external_type_display_name": "Assa Abloy Credential Service",
"connected_account_ids": ["dc08066f-d9b8-42f0-9c4b-c781cd900153"]
}
]
Request
package main
import api "github.com/seamapi/go"
func main() {
client.UserIdentities.ListAcsSystems(
context.Background(),
api.UserIdentitiesListAcsSystemsRequest{
UserIdentityId: api.String("5c945ab5-c75e-4bcb-8e5f-9410061c401f"),
},
)
}
Response
[]api.AcsSystem{api.AcsSystem{AcsSystemId: "6737e186-8d54-48ce-a7da-a0be4d252172", Name: "Assa Abloy Credential Service", WorkspaceId: "398d80b7-3f96-47c2-b85a-6f8ba21d07be", CreatedAt: "2024-01-05T07:16:51.971Z", SystemType: "assa_abloy_credential_service", SystemTypeDisplayName: "Assa Abloy Credential Service", ExternalType: "assa_abloy_credential_service", ExternalTypeDisplayName: "Assa Abloy Credential Service", ConnectedAccountIds: []string{"dc08066f-d9b8-42f0-9c4b-c781cd900153"}}}
Request Parameters
user_identity_id
user_identity_id
Type: string
Required: Yes
ID of the user identity for which you want to retrieve all access control systems.
Return Type
Array<acs_system>
Last updated