| Methods / Methods for Manual Work Items (Tasks) | |
REST
POST
Retrieves a work item collection by specifying a user name and work item status.
https://[domain]:[port]/AgilePointServer/Workflow/GetWorkListByUserID
https://[domain]:[port]/AgilePointService/Workflow/GetWorkListByUserID
| Name | Description |
|---|---|
| None | Not Applicable |
| Name | Description |
|---|---|
Status |
|
UserName |
|
These properties are based on the class GetWorkListByUserIDHelper
$("#btnGetWorkListByUserID").click(function () {
var JSONObject = {
UserName: "demo3\\brian.lucas",
Status: "Completed"
};
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Workflow/GetWorkListByUserID",
data: JSON.stringify(JSONObject)
});
});
public String GetWorkListByUserID(String UserName, String Status) {
String URI = "http://mydomain:9011/AgilePointServer/Workflow/GetWorkListByUserID";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
JSONObject postData = new JSONObject();
try {
postData.put("UserName", UserName);
postData.put("Status", Status);
return ops.POSTMethod(URI, postData.toString());
} catch (JSONException e1) {
e1.printStackTrace();
}
return "";
}
Array of WFManualWorkItem objects.
[{
"ActivatedDate": "\/Date(928149600000+0000)\/",
"ActivityInstID": "064046C009DC4F5583509D8189F3B771",
"ApplName": "MyApplication",
"AssignedDate": "\/Date(1389318661983+0000)\/",
"BeingProcessed": false,
"CancelledDate": "\/Date(1389319005427+0000)\/",
"ClientData": "",
"CompletedDate": "\/Date(928149600000+0000)\/",
"CreatedDate": "\/Date(1389318661983+0000)\/",
"DefName": "BudgetRequestProcess",
"DisplayName": "Manager Approval",
"DueDate": "\/Date(1389405060000+0000)\/",
"DueHandled": false,
"LastModifiedBy": "demo3\\brian.lucas",
"LastModifiedDate": "\/Date(1389319005427+0000)\/",
"Name": "ManagerApprove",
"OriginalUserID": "demo3\\brian.lucas",
"Pending": false,
"PoolID": "",
"PoolInfo": "",
"Priority": "Normal",
"ProcDefID": "258220E3849F4D04853F7B591B9C385E",
"ProcInstID": "B49C9AA65BE1470884A9F1DF60632ABC",
"ProcInstName": "BudgetRequestProcess-B49C9AA65BE1470884A9F1DF60632ABC",
"ResolveParticipant": "",
"RestrictionType": " ",
"Session": 1,
"SourceWorkItemID": "",
"Status": "Reassigned",
"UserID": "demo3\\brian.lucas",
"WaitWorkPerformed": true,
"WorkItemID": "485194FC741F4A4E83A71CDCBD9997D3",
"WorkObjectID": "D6DF81165A744F1A803169051615E37C"
}]
AgilePoint BPMS v5.0 R2 and higher