...
Panel | ||
---|---|---|
| ||
|
Request Elements
Element | Data Type | Required? | Default | Description |
---|---|---|---|---|
RequestId | Int32 | No | Click here for more information | |
SessionTicket | String | Yes | Click here for more information | Click here for more information |
PurgeFutureResourceHistoryFlag | Boolean | No | false | If set to true, the resource's history record will be purged from the database |
ResourceIdentity | Yes | The unique key fields associated with identifying a resource | ||
ResourceTimestamp | String | No | This is a Base64 encoded timestamp optionally utilized for resource locking | |
TerminationDateIfInUse | DateTime | No | The termination date of the resource |
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:com="http://projectorpsa.com/DataContracts/Shared/Common/"> <soapenv:Header/> <soapenv:Body> <pws:PwsDeleteResource> <pws:serviceRequest> <req:RequestId>1</req:RequestId> <req:SessionTicket>AWeOOZxrFCHSwxj9X5YBug==</req:SessionTicket> <req:PurgeFutureResourceHistoryFlag>true</req:PurgeFutureResourceHistoryFlag> <req:ResourceIdentity> <com:ResourceReferenceSystemId>temporary_resource</com:ResourceReferenceSystemId> </req:ResourceIdentity> <!--req:ResourceTimestamp>?</req:ResourceTimestamp--> <!--req:TerminationDateIfInUse>?</req:TerminationDateIfInUse--> </pws:serviceRequest> </pws:PwsDeleteResource> </soapenv:Body> </soapenv:Envelope> |
...