listPendencyDocument
This method allows listing the pending documents in the draft, review, approval, or release steps of a determined user. To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web/wwwroot/ws/java/document/ListPendencyDocumentRequestType.java |
Return | web/wwwroot/ws/java/document/ListPendencyDocumentResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDUSER | X | User ID. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:listPendencyDocument>
<urn:iduser>?</urn:iduser>
</urn:listPendencyDocument>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: Returns an object matrix with the following indexes: â–ª IDDOCUMENT: Document ID #; â–ª IDREVISION: Revision ID #; â–ª PENDENCYTYPE: To-do task type o 1 - Draft; o 2 - Review; o 3 - Approval; o 4 - Release. o 5 - Release; o 6 - Closure FAILURE: returns a vector with the following index: â–ª ERROR: String; 0: Message with error. |