...
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information | 1 | |
SessionTicket | String (50) | Yes | Click here for more information | AVWN2cthcvkr13Vtxbkl4QAavFwbZgVb9V4tr3R7BbzQ== | |
CascadeDeleteFlag | Boolean | No | false | This flag is set to true, when the user wants to delete the client and, all of the client's children
| true/false |
ClientIdentity | PwsClientRef | Yes | This is the identity of the client to be deleted | ||
InactivateIfInuseFlag | Boolean | No | false | If set to true, a client that cannot be deleted because it is in use will be set to inactive, otherwise the request will fail | true/false |
...
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:PwsDeleteClient> <pws:serviceRequest> <req:RequestId>1</req:RequestId> <req:SessionTicket>AavFwbZgVb9V4tr3R7BbzQ==</req:SessionTicket> <req:CascadeDeleteFlag>true</req:CascadeDeleteFlag> <req:ClientIdentity> <!--com:ClientId>?</com:ClientId--> <com:ClientNumber>C000122</com:ClientNumber> <!--com:ClientUid>?</com:ClientUid--> </req:ClientIdentity> <req:InactivateIfInuseFlag>true</req:InactivateIfInuseFlag> </pws:serviceRequest> </pws:PwsDeleteClient> </soapenv:Body> </soapenv:Envelope> |
...