...
Element | Data Type | Required? | Default | Description | Sample Data | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information. | ||||||||||||||
SessionTicket | String | Yes | Click here for more information. | ASA2SxZGgEWiNl525Vyqzw== | |||||||||||||
IssueOwnerIdentity | No | This is a filter that narrows down the result set and only project issues with this owner will be included. | |||||||||||||||
LimitToClosedIssuesFlag | Boolean | No | LimitToLateIssuesFlag | Boolean | LimitToOpenIssuesFlagfalse | If set to 'true', only closed issues will be included in the result set. | |||||||||||
LimitToLateIssuesFlag | Boolean | MaxPriority | String (1) | MinPriority | String (1) | ProjectIdentity | ProjectIssueCategoryIdentity | ProjectIssueIdentity | ProjectIssueStatusIdentity | No | false | If set to 'true', only late issues will be included in the result set. | |||||
LimitToOpenIssuesFlag | Boolean | No | false | If set to 'true', only open issues will be included in the result set. | |||||||||||||
MaxPriority | String (1) | No | This is a filter that narrows down the result set and only project issues at or below this value will be included. 'L' for low 'M' for medium 'H' for high | ||||||||||||||
MinPriority | String (1) | No | This is a filter that narrows down the result set and only project issues at or above this value will be included. 'L' for low 'M' for medium 'H' for high | ||||||||||||||
ProjectIdentity | Yes | The identity of the project that we are retrieving issues from. Click here for more information. | |||||||||||||||
ProjectIssueCategoryIdentity | No | This is a filter that narrows down the result set. Only project issues that matches this category will be included. Click here for more information. | |||||||||||||||
ProjectIssueIdentity | No | ||||||||||||||||
ProjectIssueStatusIdentity | No | This is a filter that narrows down the result set. Only project issues that matches this status will be included. Click here for more information. |
Request Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:web="http://projectorpsa.com/DataContracts/Shared/Web/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/"> <soapenv:Header/> <soapenv:Body> <pws:PwsGetProjectIssueList> <pws:serviceRequest> <req:SessionTicket>ASA2SxZGgEWiNl525Vyqzw==</req:SessionTicket> <web:IssueOwnerIdentity> <com:UserDisplayName>Larry Krakauer</com:UserDisplayName> </web:IssueOwnerIdentity> <web:LimitToClosedIssuesFlag>false</web:LimitToClosedIssuesFlag> <web:LimitToLateIssuesFlag>true</web:LimitToLateIssuesFlag> <web:LimitToOpenIssuesFlag>true</web:LimitToOpenIssuesFlag> <web:MaxPriority>H</web:MaxPriority> <web:MinPriority>M</web:MinPriority> <web:ProjectIdentity> <com:ProjectCode>P001053-WS2</com:ProjectCode> </web:ProjectIdentity> <web:ProjectIssueCategoryIdentity> <com:ProjectIssueCategoryUid>1152921504606992779</com:ProjectIssueCategoryUid> </web:ProjectIssueCategoryIdentity> <web:ProjectIssueStatusIdentity> <com:ProjectIssueStatusUid>1152921504607253230</com:ProjectIssueStatusUid> </web:ProjectIssueStatusIdentity> </pws:serviceRequest> </pws:PwsGetProjectIssueList> </soapenv:Body> </soapenv:Envelope> |
...
ErrorNumber | ErrorCode | ErrorText |
---|---|---|
23001 | ProjectIdentityRequiredForGetIssueList | A project identity must be specified. |
84007 | WorkspaceProjectIssueNotFound | Project issue not found. |
84011 | ProjectIssueCategoryNotFound | Project issue category not found. |
84014 | ProjectIssueStatusNotFound | Project issue status not found. |