...
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. |
EngagementTimestamp
String
StealLockFlag
Boolean
ContractLineItemIdentity |
Yes | This is the identity of the contract line item to be deleted. Click here for more information. | ||||
EngagementTimestamp | String | No | This is a Base64 encoded timestamp utilized for engagement locking. For internal use only. | ||
StealLockFlag | Boolean | No | false | If set to 'true', any locks on the engagement will be stolen if it is currently locked, otherwise, if it is set to 'false' and a lock is in place the service will fail |
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:sch="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
<soapenv:Header/>
<soapenv:Body>
<pws:PwsDeleteContractLineItem>
<pws:serviceRequest>
<req:SessionTicket>ARKG+qjBuMq+YMu7gEYnoA==</req:SessionTicket>
<sch:ContractLineItemIdentity>
<com:ContractLineItemCode>P001320-CL10</com:ContractLineItemCode>
</sch:ContractLineItemIdentity>
<sch:StealLockFlag>true</sch:StealLockFlag>
</pws:serviceRequest>
</pws:PwsDeleteContractLineItem>
</soapenv:Body>
</soapenv:Envelope> |