Copy POST /acs/systems/list_compatible_credential_manager_acs_systems ⇒ { acs_systems: [acs_system, …] }
Returns a list of all credential manager ACS systems that are compatible with a specified access control system .
Specify the ACS system for which you want to retrieve all compatible credential manager ACS systems by including the corresponding acs_system_id
in the request body.
JavaScript Python Ruby PHP Seam CLI Go
Request
Copy await seam . acs . systems .listCompatibleCredentialManagerAcsSystems ({
acs_system_id : "8d7e0b3a-b889-49a7-9164-4b71a0506a33" ,
});
Response
Copy [{ "acs_system_id" : "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" }]
Request
Copy seam . acs . systems . list_compatible_credential_manager_acs_systems (
acs_system_id = "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
)
Response
Copy [ AcsSystem (acs_system_id = "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" ) ]
Request
Copy seam . acs . systems . list_compatible_credential_manager_acs_systems(acs_system_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33" )
Response
Copy [{ "acs_system_id" => "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" }]
Request
Copy <? php
$seam -> acs -> systems -> list_compatible_credential_manager_acs_systems (
acs_system_id : "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
) ;
Response
Copy [[ "acs_system_id" => "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" ]]
Request
Copy seam acs systems list-compatible-credential-manager-acs-systems --acs_system_id "8d7e0b3a-b889-49a7-9164-4b71a0506a33"
Response
Copy [{ "acs_system_id": "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" }]
Request
Copy package main
import api "github.com/seamapi/go"
import systems "github.com/seamapi/go/systems"
func main () {
client.Acs.Systems. ListCompatibleCredentialManagerAcsSystems (
context. Background (),
systems . SystemsListCompatibleCredentialManagerAcsSystemsRequest {
AcsSystemId: api. String ( "8d7e0b3a-b889-49a7-9164-4b71a0506a33" ),
},
)
}
Response
Copy [] api . AcsSystem { api . AcsSystem {AcsSystemId: "aczp0sgx-gl9f-nygd-r11e-7pc1zufn55z4" }}
ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems.