Sample Soap Request for Method: findPatient( String nationalId )

Request: Get a CTR patient's basic information for an existing donor.

<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>someCTRuser</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:findPatient> <!--Optional:--> <arg0>CTD001357</arg0> </ctr:findPatient> </soapenv:Body> </soapenv:Envelope>

Response: The CTR patient's basic information.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:findPatientResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <nationalId>CTD001357</nationalId> <localPatientId>16159043925</localPatientId> <dateOfBirth>1996-02-29</dateOfBirth> <patientType> <id>4</id> <bizRef>DECEASED_DONOR</bizRef> </patientType> </return> </ns2:findPatientResponse> </soap:Body> </soap:Envelope>