Sample Soap Request for Method: WsHematology( String nationalId )

Request: get a patient's list of "WsHematology" records.

<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:getPatientHematologies> <arg0>CTR000001</arg0> </ctr:getPatientHematologies> </soapenv:Body> </soapenv:Envelope>

Response: the patient's list of "WsHematology" records.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:getPatientHematologiesResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>1</id> <patientId>1</patientId> <collectedOn>2020-05-30T00:00:00-04:00</collectedOn> <hgb>500</hgb> <inr>100</inr> <platelets>999.9</platelets> <wbc>99.9</wbc> <isohemagluttinAntiALevel> <id>2</id> <bizRef>1:4</bizRef> </isohemagluttinAntiALevel> <isohemagluttinAntiBLevel> <id>3</id> <bizRef>1:8</bizRef> </isohemagluttinAntiBLevel> </return> </ns2:getPatientHematologiesResponse> </soap:Body> </soap:Envelope>