Versions Compared

Key

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

...

This web service retrieves a list of the configured project issue statuses , based upon a unique project identifier for a specified (PwsProjectRef) and . The list can further be filter to include or exclude inactive statuses based on the IncludeInactiveFlag filter. 

...

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 projectproject for which to retrieve the list of configured issue statuses. Click here for more information.


...

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[]

This structure contains the complete set of information about each configured issue status for the specified project. Click here for more information.



Response Usage Example(s)

...

Code Block
languagexml
titleExample 01
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>

...


PwsGetProjectIssueStatuses - Common Errors and Warnings

...