Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

PwsUserRef

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

PwsProjectRef

ProjectIssueCategoryIdentity

PwsProjectIssueCategoryRef

ProjectIssueIdentity

PwsProjectIssueRef

ProjectIssueStatusIdentity

PwsProjectIssueStatusRef

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

PwsProjectRef

Yes


The identity of the project that we are retrieving issues from. Click here for more information.


ProjectIssueCategoryIdentity

PwsProjectIssueCategoryRef

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

PwsProjectIssueRef

No




ProjectIssueStatusIdentity

PwsProjectIssueStatusRef

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
languagexml
titleExample 01 - without project identity
collapsetrue
<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

23001ProjectIdentityRequiredForGetIssueListA project identity must be specified.
84007WorkspaceProjectIssueNotFoundProject issue not found.
84011ProjectIssueCategoryNotFoundProject issue category not found.
84014ProjectIssueStatusNotFoundProject issue status not found.