ExportImportService


Click here for a complete list of operations.

UpdateClient_081902

Web method to update a client record in the database. (A blank value for strNewMedicalRecordNumber should be provided as: ##BLANK##)

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
strUsername:
strPassword:
strMedicalRecordNumber:
strNewMedicalRecordNumber:
strLastName:
strFirstName:
strMiddleName:
strBirthDate:
strGender:
strDiagnosis:
strClinic:
strClinicianID:
strClinicianCustomID:
strDefaultInstrumentCode:
strDefaultSettingOfCare:
strSessionNumberIncrement:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /Docs/services/exportimportservice.asmx HTTP/1.1
Host: demo.oqanalyst.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.LanarkSystems.com/OQA/UpdateClient_081902"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <UpdateClient_081902 xmlns="http://www.LanarkSystems.com/OQA">
      <strUsername>string</strUsername>
      <strPassword>string</strPassword>
      <strMedicalRecordNumber>string</strMedicalRecordNumber>
      <strNewMedicalRecordNumber>string</strNewMedicalRecordNumber>
      <strLastName>string</strLastName>
      <strFirstName>string</strFirstName>
      <strMiddleName>string</strMiddleName>
      <strBirthDate>string</strBirthDate>
      <strGender>string</strGender>
      <strDiagnosis>string</strDiagnosis>
      <strClinic>string</strClinic>
      <strClinicianID>string</strClinicianID>
      <strClinicianCustomID>string</strClinicianCustomID>
      <strDefaultInstrumentCode>string</strDefaultInstrumentCode>
      <strDefaultSettingOfCare>string</strDefaultSettingOfCare>
      <strSessionNumberIncrement>string</strSessionNumberIncrement>
    </UpdateClient_081902>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <UpdateClient_081902Response xmlns="http://www.LanarkSystems.com/OQA">
      <UpdateClient_081902Result>xml</UpdateClient_081902Result>
    </UpdateClient_081902Response>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /Docs/services/exportimportservice.asmx HTTP/1.1
Host: demo.oqanalyst.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <UpdateClient_081902 xmlns="http://www.LanarkSystems.com/OQA">
      <strUsername>string</strUsername>
      <strPassword>string</strPassword>
      <strMedicalRecordNumber>string</strMedicalRecordNumber>
      <strNewMedicalRecordNumber>string</strNewMedicalRecordNumber>
      <strLastName>string</strLastName>
      <strFirstName>string</strFirstName>
      <strMiddleName>string</strMiddleName>
      <strBirthDate>string</strBirthDate>
      <strGender>string</strGender>
      <strDiagnosis>string</strDiagnosis>
      <strClinic>string</strClinic>
      <strClinicianID>string</strClinicianID>
      <strClinicianCustomID>string</strClinicianCustomID>
      <strDefaultInstrumentCode>string</strDefaultInstrumentCode>
      <strDefaultSettingOfCare>string</strDefaultSettingOfCare>
      <strSessionNumberIncrement>string</strSessionNumberIncrement>
    </UpdateClient_081902>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <UpdateClient_081902Response xmlns="http://www.LanarkSystems.com/OQA">
      <UpdateClient_081902Result>xml</UpdateClient_081902Result>
    </UpdateClient_081902Response>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /Docs/services/exportimportservice.asmx/UpdateClient_081902?strUsername=string&strPassword=string&strMedicalRecordNumber=string&strNewMedicalRecordNumber=string&strLastName=string&strFirstName=string&strMiddleName=string&strBirthDate=string&strGender=string&strDiagnosis=string&strClinic=string&strClinicianID=string&strClinicianCustomID=string&strDefaultInstrumentCode=string&strDefaultSettingOfCare=string&strSessionNumberIncrement=string HTTP/1.1
Host: demo.oqanalyst.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xml

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /Docs/services/exportimportservice.asmx/UpdateClient_081902 HTTP/1.1
Host: demo.oqanalyst.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

strUsername=string&strPassword=string&strMedicalRecordNumber=string&strNewMedicalRecordNumber=string&strLastName=string&strFirstName=string&strMiddleName=string&strBirthDate=string&strGender=string&strDiagnosis=string&strClinic=string&strClinicianID=string&strClinicianCustomID=string&strDefaultInstrumentCode=string&strDefaultSettingOfCare=string&strSessionNumberIncrement=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xml