List ACS Systems
Returns a list of all access systems.
To filter the list of returned access 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 systems connected to your workspace.
POST /acs/systems/list β { acs_systems: [acs_system, β¦] }
Request Parameters
connected_account_id
String
ID of the connected account by which you want to filter the list of access systems.
Response
Array of acs_systems
{
JSON representation of acs_system
}
Examples
List ACS systems by connected account
To filter the list of ACS systems, include a connected_account_id
.
Code
await seam.acs.systems.list({
connected_account_id: "123e4567-e89b-12d3-a456-426614174000",
});
Output
[{ "acs_system_id": "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Last updated
Was this helpful?