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

Request: Update a recipient's participation to the IPOS Heart program, set program exclusion (arg2) = TRUE

<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>aUser</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">anypw</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ctr:updateOrganRequestParticipation> <arg0>CTR043587</arg0> <arg1>150946</arg1> <arg2>true</arg2> </ctr:updateOrganRequestParticipation> </soapenv:Body> </soapenv:Envelope>

Response: the updated "organ request" record.

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