Table of Contents

Search

  1. Preface
  2. Introduction to Services Integration Framework
  3. Setting Up the SIF SDK
  4. Request and Response Objects
  5. Transactions and Exception Handling
  6. ORS-Specific SIF API
  7. Asynchronous SIF Requests
  8. ORS-Specific JMS Event Messages
  9. Using Security Access Manager
  10. Using Dynamic Data Masking
  11. SIF API Reference
  12. Troubleshooting
  13. Appendix A: Identifiers
  14. Appendix B: Frequently Asked Questions

Services Integration Framework Guide

Services Integration Framework Guide

GetAssignableUsersForTasks

GetAssignableUsersForTasks

The
GetAssignableUsersForTasks
API retrieves a list of users who can be assigned a list of specified tasks. The algorithm relies on the task assignment configuration by default but you can customize the configuration via the CMXUE.get_assignable_users_for_task user exit.

Required Request Parameters

The following table describes the required parameters for the
GetAssignableUsersForTasks
request:
Parameter
Description
AssignableTaskInfoList
The task type and subject area UID of a list of tasks.

Optional Request Parameters

The
GetAssignableUsersForTasks
request does not have optional parameters.

Response Fields

The following table describes the fields returned by the
GetAssignableUsersForTasks
response:
Field
Description
UserUIDs
Contains the UIDs of the users who are permitted to receive the tasks listed in the
GetAssignableUsersForTasks
request.

Usage Example

The code in the following example retrieves users who can have Merge tasks in the Person subject area assigned to them:
GetAssignableUsersForTasksRequest request = new GetAssignableUsersForTasksRequest(); List taskInfoList = new ArrayList(); taskInfoList.add(new AssignableTaskInfo("Merge","SUBJECT_AREA.test|Person")); request.setAssignableTaskInfoList(taskInfoList); GetAssignableUsersForTasksResponse response = (GetAssignableUsersForTasksResponse) sipClient.process(request);

0 COMMENTS

We’d like to hear from you!