Returns a specified .
Specify the desired access control system by including the corresponding acs_system_id
in the request body.
POST /acs/systems/get ⇒ { acs_system }
Authentication Methods
Personal access token
Must also include the seam-workspace
header in the request.
To learn more, see .
Request Parameters
acs_system_id
(Required)
ID of the desired access control system.
Response
{
JSON representation of acs_system
}
Examples
Get a Specific ACS system
Specify the acs_system_id
of the ACS system that you want to retrieve.
Code
await seam.acs.systems.get({
acs_system_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
});
Output
[{ "acs_system_id": "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Code
seam.acs.systems.get(acs_system_id="8d7e0b3a-b889-49a7-9164-4b71a0506a33")
Output
[AcsSystem(acs_system_id="8d7e0b3a-b889-49a7-9164-4b71a0506a33")]
Code
seam.acs.systems.get(acs_system_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33")
Output
[{ "acs_system_id" => "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Code
<?php
$seam->acs->systems->get(acs_system_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33");
Output
<?php
[["acs_system_id" => "8d7e0b3a-b889-49a7-9164-4b71a0506a33"]];
Code
seam acs systems get --acs_system_id "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
Output
[{ "acs_system_id": "8d7e0b3a-b889-49a7-9164-4b71a0506a33" }]
Code
package main
import api "github.com/seamapi/go"
import systems "github.com/seamapi/go/systems"
func main() {
client.Acs.Systems.Get(
context.Background(),
systems.SystemsGetRequest{
AcsSystemId: api.String("8d7e0b3a-b889-49a7-9164-4b71a0506a33"),
},
)
}
Output
[]api.AcsSystem{api.AcsSystem{AcsSystemId: "8d7e0b3a-b889-49a7-9164-4b71a0506a33"}}