Copy POST /acs/systems/list ⇒ { acs_systems: [acs_system, …] }
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.
JavaScript Python Ruby PHP Seam CLI
Request
Copy await seam . acs . systems .list ({
connected_account_id : "8d7e0b3a-b889-49a7-9164-4b71a0506a33" ,
});
Response
Copy [{ acs_system_id : "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }];
Request
Copy seam . acs . systems . list (connected_account_id = "8d7e0b3a-b889-49a7-9164-4b71a0506a33" )
Response
Copy [ AcsSystem (acs_system_id = "8d7e0b3a-b889-49a7-9164-4b71a0506a33" ) ]
Request
Copy seam . acs . systems . list(connected_account_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33" )
Response
Copy [{ "acs_system_id" => "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Request
Copy <? php
$seam -> acs -> systems -> list (
connected_account_id : "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
) ;
Response
Copy [{ "acs_system_id" : "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Request
Copy seam acs systems list --connected_account_id "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
Response
Copy [{ "acs_system_id": "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
ID of the connected account by which to filter the list of returned access control systems.