Sample Soap Request for Method: updateOrganRequestParticipation( String nationalRecipientId, Long organRequestId, Boolean preventProgramParticipation )

Request: When the user does not have write permissions to the LtSection-PatientProgramExclusion, but the request is not changing the current value of the program exclusion field, No error will be raised and the response will contain the current organ request values.
note: In this example the current values of the '<preventProgramParticipation>' is false, and the response contains the same field value.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ctr="http://ctr3ws.cbs.com/"> <soapenv:Header> <wsse:Security soapenv:mustUnderstand="0" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:UsernameToken wsu:Id="UsernameToken-3" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> <wsse:Username>WS_QC</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">Anypw123!</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ctr:updateOrganRequestParticipation> <arg0>CTR045243</arg0> <arg1>152436</arg1> <arg2>false</arg2> </ctr:updateOrganRequestParticipation> </soapenv:Body> </soapenv:Envelope>

Response: the updated "organ request" record.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <ns2:updateOrganRequestParticipationResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <nationalRecipientId>CTR045243</nationalRecipientId> <organRequestId>152436</organRequestId> <preventProgramParticipation>false</preventProgramParticipation> <dwlEligible>true</dwlEligible> </return> </ns2:updateOrganRequestParticipationResponse> </soapenv:Body> </soapenv:Envelope>