...
Panel | ||
---|---|---|
| ||
|
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. | AXMZK4IOBU8dpN2JDcCpSg== | ||||
CountOnlyFlag | Boolean | No | false | If set to 'true', the web service will include only a count of project workspace alerts. If set to 'false", the web service will return full project workspace alert details | false |
IncludeOpenIssueAlertsFlag | Boolean | No | false | If set to 'true', details of the open issue alerts will be included in the response | false |
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/"> <soapenv:Header/> <soapenv:Body> <pws:PwsGetProjectWorkspaceAlerts> <pws:serviceRequest> <req:RequestId>1</req:RequestId> <req:SessionTicket>AXMZK4IOBU8dpN2JDcCpSg==</req:SessionTicket> <web:CountOnlyFlag>false</web:CountOnlyFlag> <web:IncludeOpenIssueAlertsFlag>false</web:IncludeOpenIssueAlertsFlag> </pws:serviceRequest> </pws:PwsGetProjectWorkspaceAlerts> </soapenv:Body> </soapenv:Envelope> |
...
Panel | ||
---|---|---|
| ||
|
Response Elements
Element | Data Type | Description | Sample Data |
---|---|---|---|
Messages | Click here for more information |
ResponseId | Int32 | Click here for more information | 1 |
Status | Click here for more information | Ok | |
ServerTimestampUtc | DateTime | Click here for more information | 2018-03-19T18:36:30.9537148Z |
OpenIssueAlerts | The full details of the open issue alerts |
Response Usage Example(s)
...