Returns a paged list of documents assigned to the specified user for ISO review.
/srv.asmx/GetISOReviewAssignmentsOfUser
/srv.asmx/GetISOReviewAssignmentsOfUser?authenticationTicket=...&userName=...&startingRow=...&rowCount=.../srv.asmx/GetISOReviewAssignmentsOfUser (form data)http://tempuri.org/GetISOReviewAssignmentsOfUser| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser |
userName |
string | Yes | The username whose ISO review assignments are to be retrieved |
startingRow |
int | Yes | Zero-based row offset for paging. Pass 0 to start from the first result |
rowCount |
int | Yes | Number of rows to return (page size). Pass 0 to return all results |
<root success="true" totalcount="12">
<document id="510" name="QualityPolicy.docx" path="/ISO/QualityPolicy.docx" ... />
<document id="622" name="ProcedureManual.pdf" path="/ISO/ProcedureManual.pdf" ... />
</root>
<root success="false" error="[901] Session expired or invalid ticket" />
GET /srv.asmx/GetISOReviewAssignmentsOfUser?authenticationTicket=abc-123&userName=jsmith&startingRow=0&rowCount=25
POST /srv.asmx/GetISOReviewAssignmentsOfUser HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=abc-123&userName=jsmith&startingRow=0&rowCount=25
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:GetISOReviewAssignmentsOfUser>
<tns:authenticationTicket>abc-123</tns:authenticationTicket>
<tns:userName>jsmith</tns:userName>
<tns:startingRow>0</tns:startingRow>
<tns:rowCount>25</tns:rowCount>
</tns:GetISOReviewAssignmentsOfUser>
</soap:Body>
</soap:Envelope>
startingRow=0 and rowCount=0 to retrieve all ISO review assignments.totalcount attribute on the root element reflects the total number of ISO review assignments for the user, regardless of paging parameters.GetISOReviewAssignments. Callers using the old name must update to GetISOReviewAssignmentsOfUser and add the startingRow and rowCount parameters.<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.