Versions Compared

Key

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

...

Panel
titlePwsDeleteInvoice Request

Request Elements


Element

Data Type

Required?

Default

Description

RequestId

Int32

No


Click here for more information.

SessionTicket

String

Yes


Click here for more information.

InvoiceIdentity

PwsInvoiceRef

Yes


Identity of invoice to be deleted.

InvoiceTimestamp

String

No


A projector lock set id is an identifier for a group of one or more locks held as a unit.

LocksToSteal

PwsEntityLockSummary

No


This is an optimistic locking timestamp for the invoice to be deleted. If specified, must match the current invoice timestamp.

ProjectorLockSetId

Int32

No


If stealing existing locks, specify lock holders from PwsFault response.


Request Usage Example(s)


Code Block
languagexml
titleRequest 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:bil="http://projectorpsa.com/DataContracts/Shared/Billing/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsDeleteInvoice>
         <!--Optional:-->
         <pws:serviceRequest>
            <req:SessionTicket>AcQ1BEusAT8qGh8BhF0OFg==</req:SessionTicket>
            <bil:InvoiceIdentity>
               <com:InvoiceNumber>DRAFT00158</com:InvoiceNumber>
            </bil:InvoiceIdentity>
         </pws:serviceRequest>
      </pws:PwsDeleteInvoice>
   </soapenv:Body>
</soapenv:Envelope>

...