How to do a WebService query for workitem where filters are based on username and workitem state?

How to do a WebService query for workitem where filters are based on username and workitem state?

book

Article ID: KB0094670

calendar_today

Updated On:

Products Versions
TIBCO Collaborative Information Manager -
Not Applicable -

Description

Resolution:
It can be achieved by passing USER and STATUS in the webservice request as follows:
&ltTransaction>
    &ltCommand type="Query">
        &ltStartCount&gt1</StartCount>
        &ltMaxCount&gt10</MaxCount>
        &ltWorkitem etype="Entity">
            &ltExternalKeys>
                &ltKey name="STATUS" type="string"&gtOPEN</Key>
                &ltKey name="USER" type="string"&gtadmin</Key>
            </ExternalKeys>
        </Workitem>
    </Command>
</Transaction>

Issue/Introduction

How to do a WebService query for workitem where filters are based on username and workitem state?