Using Blue web services to retrieve user task details
This document will guide you through the steps necessary to retrieve details on tasks for users in a Blue project. Since we don't have the user ID or the datasource ID, which are both required pieces of information to get a list of tasks assigned to a user, we must also use GetUserData() and GetDatasoucreMappingTable().
The following API calls are needed:
Overall process
- Retrieve the ID of the datasource containing the users. Call GetDatasourceMappingTable() to retrieve the datasource IDs.
- Obtain the user IDs by calling GetUserData().
- Get task information by passing one or more user IDs to GetTasks3().
Back to top