Sample Soap Request for Method: updateRenalProfile( String nationalId, WsRenalProfileInput wsInput )

Request: add a patient "WsRenalProfile" record.

<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:updateRenalProfile> <arg0>CTR000004</arg0> <arg1> <id>0</id> <collectedOn>2020-09-15T11:00:00-04:00</collectedOn> <height>150</height> <serumCreatinine>50</serumCreatinine> <weight>50</weight> </arg1> </ctr:updateRenalProfile> </soapenv:Body> </soapenv:Envelope>

Response: the new "WsRenalProfile" record.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:updateRenalProfileResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>21</id> <patientId>4</patientId> <collectedOn>2020-09-15T11:00:00-04:00</collectedOn> <cockroftGaultCrcl>143.52</cockroftGaultCrcl> <egfrCkdEpi>151.818</egfrCkdEpi> <egfrSchwartz>109.5</egfrSchwartz> <height>150</height> <serumCreatinine>50</serumCreatinine> <weight>50</weight> </return> </ns2:updateRenalProfileResponse> </soap:Body> </soap:Envelope>

Request: Updated a "WsRenalProfile" record.

<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:updateRenalProfile> <arg0>CTR000004</arg0> <arg1> <id>1</id> <collectedOn>2020-09-16T00:15:00-04:00</collectedOn> <height>171</height> <serumCreatinine>71</serumCreatinine> <weight>71</weight> </arg1> </ctr:updateRenalProfile> </soapenv:Body> </soapenv:Envelope>

Response: The updated "WsRenalProfile" record.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:updateRenalProfileResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>1</id> <patientId>4</patientId> <collectedOn>2020-09-16T00:15:00-04:00</collectedOn> <height>171</height> <serumCreatinine>71</serumCreatinine> <weight>71</weight> <cockroftGaultCrcl>143.52</cockroftGaultCrcl> <egfrCkdEpi>119.861</egfrCkdEpi> <egfrSchwartz>87.908</egfrSchwartz> </return> </ns2:updateRenalProfileResponse> </soap:Body> </soap:Envelope>