ExternalCatalogRealmsResult GetExternalCatalogRealms()
The GetExternalCatalogRealms operation gets storage areas/domains with information about security subjects available to use in the platform.
The operation does not have input parameters, all information will be obtained from the current user network.
The operation results in the collection of names and types of storage areas/domains.
Below is the example of getting storage areas/domains with information about security subjects that can be used in the platform.
{
"GetExternalCatalogRealms" : ""
}
{
"GetExternalCatalogRealmsResult" :
{
"meta" :
{
"realms" :
{
"it" :
{
"type" : "1",
"name" : ""
}
}
}
}
}
public static ExternalCatalogRealmsResult GetExternalCatalogRealms()
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
var tGet = new GetExternalCatalogRealms();
// Get information about storage areas/domains
var result = somClient.GetExternalCatalogRealms(tGet);
return result;
}
See also: