Click or drag to resize
IQMSResolveUserGroups Method
This method returns all groups that a certain user is a member of.

Namespace: PIX.Services.V12
Assembly: 
Syntax
List<string> ResolveUserGroups(
	Guid dscID,
	string user
)

Parameters

dscID
Type: SystemGuid
The Directory Service Connector to use.
user
Type: SystemString
The name of the user, including domain name.

Return Value

Type: ListString
A list of group names found.
Remarks
Security note Security Note

Requires membership of local groups QlikView Management API and QlikView Administrator.

Examples

The service key injection is assumed to be handled behind the scenes. For an example of how to inject the service key, see Samples.

This example retrieves all groups for a single user and prints them to the console.
C#
using System;
using System.Collections.Generic;
using System.Linq;
using QMSAPI;

class Program
{
    static void Main(string[] args)
    {
        try
        {
            // create a QMS API client
            IQMS apiClient = new QMSClient();

            //retrieve a time limited service key
            ServiceKeyClientMessageInspector.ServiceKey = apiClient.GetTimeLimitedServiceKey();

            ServiceInfo dscService = apiClient.GetServices(ServiceTypes.QlikViewDirectoryServiceConnector).FirstOrDefault();
            if (dscService != null)
            {
            List<string> groups = apiClient.ResolveUserGroups(dscService.ID, "corpdomain\\johnb");
                groups.ForEach(Console.WriteLine);
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("An exception occurred: " + ex.Message);
        }
        // wait for user to press any key
        Console.ReadLine();
    }
}
See Also