Versions Compared

Key

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

...

This web service retrieves a list of project issue statuses, based upon a unique project identifier (PwsProjectRef) and a list of optional filtersthe IncludeInactiveFlag filter

Request Format

Panel
titlePwsGetProjectIssueStatuses Request

Request Elements

Element

Data Type

Required?

Default

Description

Sample Data

RequestId

Int32

No


Click here for more information.


SessionTicket

String

Yes


Click here for more information.

ARNkL4C1bp7KLtsSXQW6/g==

IncludeInactiveFlag

Boolean

No

false

If set to 'true', both inactive and active issue statuses are included in the response.

false

ProjectIdentity

PwsProjectRef

Yes


The set of information that can uniquely identify a project. Click here for more information.


Request Usage Example(s)

Code Block
languagexml
titleExample 01 - without project issue 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:PwsGetProjectIssueStatuses>
         <pws:serviceRequest>
            <req:SessionTicket>ARNkL4C1bp7KLtsSXQW6/g==</req:SessionTicket>
            <web:IncludeInactiveFlag>true</web:IncludeInactiveFlag>
            <web:ProjectIdentity>
               <com:ProjectCode>P001053-001</com:ProjectCode>
            </web:ProjectIdentity>
         </pws:serviceRequest>
      </pws:PwsGetProjectIssueStatuses>
   </soapenv:Body>
</soapenv:Envelope>
Code Block
languagexml
titleExample 02 - with project issue identity
collapsetrue
</soapenv:Envelope>


Response Format

Panel
titlePwsGetProjectIssueStatuses Response

Response Elements

Element

Data Type

Description

Sample Data

Messages

PwsMessage

 The web service response status and message. Click here for more information.

 


ResponseId

Int32

Click here for more information.

 0

Status

RequestStatus

Click here for more information.

Ok

ServerTimestampUtc

DateTime

Click here for more information.

2018-03-07T14:44:11.9219745Z

IssueStatuses

PwsProjectIssueStatus

 

 




Response Usage Example(s)

Code Block
languagexml
titleExample 01 - without project issue identity
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <PwsGetProjectIssueStatusesResponse xmlns="http://projectorpsa.com/PwsProjectorServices/">
         <PwsGetProjectIssueStatusesResult xmlns:a="http://projectorpsa.com/DataContracts/Shared/Web/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/>
            <ResponseId xmlns="http://projectorpsa.com/CommonServices/">0</ResponseId>
            <Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status>
            <ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2018-03-07T14:44:11.9219745Z</ServerTimestampUtc>
            <a:IssueStatuses>
               <a:PwsProjectIssueStatus>
                  <ProjectIssueStatusId xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1119752</ProjectIssueStatusId>
                  <ProjectIssueStatusUid xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1152921504607966728</ProjectIssueStatusUid>
                  <a:InactiveFlag>false</a:InactiveFlag>
                  <a:Name>New</a:Name>
                  <a:SortOrder>1</a:SortOrder>
                  <a:TreatAsClosedFlag>false</a:TreatAsClosedFlag>
               </a:PwsProjectIssueStatus>
               <a:PwsProjectIssueStatus>
                  <ProjectIssueStatusId xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1119750</ProjectIssueStatusId>
                  <ProjectIssueStatusUid xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1152921504607966726</ProjectIssueStatusUid>
                  <a:InactiveFlag>false</a:InactiveFlag>
                  <a:Name>Assigned</a:Name>
                  <a:SortOrder>2</a:SortOrder>
                  <a:TreatAsClosedFlag>false</a:TreatAsClosedFlag>
               </a:PwsProjectIssueStatus>
               <a:PwsProjectIssueStatus>
                  <ProjectIssueStatusId xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1119751</ProjectIssueStatusId>
                  <ProjectIssueStatusUid xmlns="http://projectorpsa.com/DataContracts/Shared/Common/">1152921504607966727</ProjectIssueStatusUid>
                  <a:InactiveFlag>false</a:InactiveFlag>
                  <a:Name>Closed</a:Name>
                  <a:SortOrder>3</a:SortOrder>
                  <a:TreatAsClosedFlag>true</a:TreatAsClosedFlag>
               </a:PwsProjectIssueStatus>
            </a:IssueStatuses>
         </PwsGetProjectIssueStatusesResult>
      </PwsGetProjectIssueStatusesResponse>
   </s:Body>
</s:Envelope>

...