SetAssignedUsers Method
Overloads
| SetAssignedUsers(List<AssignedUser>) |
Sets assigned users. |
SetAssignedUsers(List<AssignedUser>)
Sets assigned users.
Declaration
List<AssignedUser> SetAssignedUsers(List<AssignedUser> assignments)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.List<AssignedUser> | assignments |
List of assignments to set. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.List<AssignedUser> |
A list of assigned users is returned if the operation was successful, otherwise an error message is returned. |
Remarks
security
Requires membership of local groups QlikView Management API and QlikView Administrator.
Examples
The following code example uses the QMS API to assign professional access to userA.
The service key injection is assumed to be handled behind the scenes. For an example of how to inject the service key, see Samples.
using System;
using System.Collections.Generic;
using System.Linq;
using QMSAPI;
class Program
{
static void Main(string[] args)
{
try
{
// create a QMS API client
IQMS4 apiClient = new QMS4Client();
//retrieve a time limited service key
ServiceKeyClientMessageInspector.ServiceKey = apiClient.GetTimeLimitedServiceKey();
//Make an assigned user and add it to array
AssignedUser user = new AssignedUser
{
subject = "userA",
type = "professional"
};
AssignedUser[] assignments = new AssignedUser[1];
assignments[0] = user;
//set the assigned user
AssignedUser[] result = apiClient.SetAssignedUser(assignments);
}
catch (Exception ex)
{
Console.WriteLine("An exception occurred: " + ex.Message);
}
// wait for user to press any key
Console.ReadLine();
}
}