Sample Soap Request for Method: getPatientElectrolytes( String nationalId )

Request: get a patient's list of "WsElectrolytes" 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:getPatientElectrolytes> <arg0>CTD000002</arg0> </ctr:getPatientElectrolytes> </soapenv:Body> </soapenv:Envelope>

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

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:getPatientElectrolytesResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>1</id> <patientId>2</patientId> <collectedOn>2020-03-04T23:10:00-05:00</collectedOn> <k>10</k> <lactate>38.4</lactate> <na>99</na> <serumCreatinine>8888</serumCreatinine> <ca>20</ca> <caIonized>10</caIonized> <cl>999</cl> <co2>99.9</co2> <glucose>99.9</glucose> <mg>10</mg> <po4>10</po4> <serumOsmo>500</serumOsmo> <urea>99.9</urea> </return> </ns2:getPatientElectrolytesResponse> </soap:Body> </soap:Envelope>