Returns the list of documents that have active (due) workflow tasks currently assigned to the authenticated user. Results are sorted by task due date in ascending order.
/srv.asmx/GetDueTaskDocuments
/srv.asmx/GetDueTaskDocuments?authenticationTicket=.../srv.asmx/GetDueTaskDocuments (form data)http://tempuri.org/GetDueTaskDocuments| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
<root success="true">
<document
id="1024"
name="ContractDraft.pdf"
path="/Corporate/Contracts/ContractDraft.pdf"
checkedout="false"
checkoutby=""
checkoutbyid="0"
owner="john.smith"
ownerid="7"
ownerFullName="John Smith"
createdate="2024-03-01 09:15:00"
modifydate="2024-03-10 14:22:00"
versioncount="3"
currentversion="3"
size="245760"
mimetype="application/pdf"
importance="0"
expired="false"
expirationdate=""
domainname="Corporate"
domainid="45" />
<document ... />
</root>
An empty result set (no due tasks) returns:
<root success="true" />
<root success="false" error="[901] Session expired or Invalid ticket" />
Any authenticated user may call this API. Only tasks assigned to the calling user are returned.
<document> element contains standard document properties. Rules, custom property sets, security details, and version history are not included in the response.<document> element includes a UserViewStatus integer attribute: 0 = never viewed, 1 = viewed but the published version has since changed, 2 = viewed the current published version. See GetDocument for the full attribute reference.| Error | Description |
|---|---|
[900] |
Authentication failed -“ invalid credentials. |
[901] |
Session expired or invalid authentication ticket. |