Versions Compared

Key

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

...

Panel
titlePwsDismissTimeAlerts Request
  • PwsDismissTimeAlerts
    • serviceRequest: PwsDismissTimeAlertsRq

Request Elements


Element

Data Type

Required?

Description

Sample Data

RequestId

Int32

No

Click here for more information.

1

SessionTicket

String

Yes 

Click here for more information.

ARgBFuS/0LDcPCTXeih6XQ== 

DraftTimeAlertDates

DateTime [???]

No 

Draft time alert date to be suppressed

 


MissingTimeAlertDates

DateTime [???]

Yes - at this time, this is the only type of time alert that can be dismissed

Missing time alert date to be suppressed

2018-03-05T00:00:00.000Z 

RejectedTimeAlertDates

DateTime [???]

No 

Rejected time alert date to be suppressed 

 


ResourceIdentity

PwsResourceRef

 


Identity of resource, if dismissing time alerts on behalf of another resource

 


Request Usage Example(s)


Code Block
languagexml
titleExample 01
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:tim="http://projectorpsa.com/DataContracts/Shared/TimeAndCost/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsDismissTimeAlerts>
         <pws:serviceRequest>
            <req:RequestId>1</req:RequestId>
            <req:SessionTicket>ARgBFuS/0LDcPCTXeih6XQ==</req:SessionTicket>
            <tim:MissingTimeAlertDates>
               <arr:dateTime>2018-03-05T00:00:00.000Z</arr:dateTime>
            </tim:MissingTimeAlertDates>
            <tim:ResourceIdentity>
               <com:ResourceDisplayName>Jack Spratt</com:ResourceDisplayName>
               <com:ResourceReferenceSystemId>E123</com:ResourceReferenceSystemId>
            </tim:ResourceIdentity>
         </pws:serviceRequest>
      </pws:PwsDismissTimeAlerts>
   </soapenv:Body>
</soapenv:Envelope>