Sample Soap Request for Method: getCardioThoracicProfiles( String nationalId )

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

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

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:getCardioThoracicProfilesResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>3</id> <patientId>1</patientId> <collectedOn>2020-05-20T00:00:00-04:00</collectedOn> <cardioPulmonaryStressTest>1</cardioPulmonaryStressTest> <ejectionFraction>1</ejectionFraction> <fevc1FvcRatio>1</fevc1FvcRatio> <fvc>1</fvc> <lvedDimension>1</lvedDimension> <rightVentrSysPressure>1</rightVentrSysPressure> </return> <return> <id>2</id> <patientId>1</patientId> <collectedOn>2020-05-19T00:15:00-04:00</collectedOn> <cardioPulmonaryStressTest>2</cardioPulmonaryStressTest> <ejectionFraction>2</ejectionFraction> <fevc1FvcRatio>2</fevc1FvcRatio> <fvc>2</fvc> <lvedDimension>2</lvedDimension> <rightVentrSysPressure>2</rightVentrSysPressure> </return> <return> <id>1</id> <patientId>1</patientId> <collectedOn>2020-05-18T00:30:00-04:00</collectedOn> <cardioPulmonaryStressTest>3</cardioPulmonaryStressTest> <ejectionFraction>3</ejectionFraction> <fevc1FvcRatio>3</fevc1FvcRatio> <fvc>3</fvc> <lvedDimension>3</lvedDimension> <rightVentrSysPressure>3</rightVentrSysPressure> </return> </ns2:getCardioThoracicProfilesResponse> </soap:Body> </soap:Envelope>