GetTasks
GetTasks(string APIKeyHeader, string Message, string[] PIDs, string UserID, string[] IDs, string TaskStatus, dateTime StartDate, dateTime EndDate, int ExtentionDays, boolean ShowNotReady)
Retrieves all the tasks for one or more UserIDs.
Inputs: <InputParameter>
Properties | Attribute Type | Description |
---|---|---|
DataSourceID: string | Message Header |
Outputs: <OutputParameter>
Properties | Attribute Type | Description |
---|---|---|
TransactionID: long | Message Header | |
Message: string | Message Header |
Notes
For the parameter TaskStatus
- When TaskStatus = “completed”, GetTasks() returns only completed tasks.
- When TaskStatus = “inprogress”, GetTasks() returns only tasks that are in progress but not completed yet.
- When TaskStatus = “open”, GetTasks() returns only tasks that are open.
- When TaskStatus = “notcompleted”, GetTasks() tasks are either open, in progress or not ready tasks.
- When TaskStatus = “”, GetTasks() returns tasks with all possible status.
Back to top