Appointments - UpdateAppointments - Update an appointment/review against a candidate

Service URL: https://api.learningassistant.com/webservices/soap/appointments.cfc?wsdl

Request
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Header>
    <authToken xmlns="https://api.learningassistant.com" xmlns:ns1="https://api.learningassistant.com" loggedin="YES" soapenv:actor="" soapenv:mustUnderstand="0">
      <id type="xsd:string"> {id} </id>
      <uuid type="xsd:string"> {uuid} </uuid>
    </authToken>
  </soapenv:Header>
  <soapenv:Body>
    <ns1:UpdateAppointments xmlns:ns1="https://api.learningassistant.com" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
      <Appointments xmlns:ns2="http://appointments.types.webservices" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" soapenc:arrayType="ns2:Update[1]" xsi:type="soapenc:Array">
        <Appointments xsi:type="ns2:Update">
          <dtActual xsi:type="xsd:string"> {dtActual} </dtActual>
          <dtEndTime xsi:type="xsd:string"> {dtEndTime} </dtEndTime>
          <dtStartTime xsi:type="xsd:string"> {dtStartTime} </dtStartTime>
          <szCompanyName xsi:type="xsd:string"> {szCompanyName} </szCompanyName>
          <szDescription xsi:type="xsd:string"> {szDescription} </szDescription>
          <szLocation xsi:type="xsd:string"> {szLocation} </szLocation>
          <szTitle xsi:type="xsd:string"> {szTitle} </szTitle>
          <uuidAppointment xsi:type="xsd:string"> {uuidAppointment} </uuidAppointment>
          <uuidCandidate xsi:type="xsd:string"> {uuidCandidate} </uuidCandidate>
          <uuidCategory xsi:type="xsd:string"> {uuidCategory} </uuidCategory>
          <uuidCourse xsi:type="xsd:string"> {uuidCourse} </uuidCourse>
          <uuidStatus xsi:type="xsd:string"> {uuidStatus} </uuidStatus>
          <uuidUser xsi:type="xsd:string"> {uuidUser} </uuidUser>
        </Appointments>
      </Appointments>
    </ns1:UpdateAppointments>
  </soapenv:Body>
</soapenv:Envelope>
Response
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Header>
    <authToken xmlns="https://api.learningassistant.com" xmlns:ns1="https://api.learningassistant.com" loggedin="YES" soapenv:actor="" soapenv:mustUnderstand="0">
      <id type="xsd:string"> {id} </id>
      <uuid type="xsd:string"> {uuid} </uuid>
    </authToken>
  </soapenv:Header>
  <soapenv:Body>
    <ns2:UpdateAppointmentsResponse xmlns:ns2="https://api.learningassistant.com" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
      <UpdateAppointmentsReturn xmlns:ns3="http://appointments.types.webservices" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" soapenc:arrayType="ns3:Update_return[1]" xsi:type="soapenc:Array">
        <UpdateAppointmentsReturn xsi:type="ns3:Update_return">
          <AppointmentUpdated xsi:type="xsd:boolean"> {AppointmentUpdated} </AppointmentUpdated>
          <MessageList xmlns:ns4="http://standard.types.soap.webservices" soapenc:arrayType="ns4:Type_ErrorMessage[0]" xsi:type="soapenc:Array" />
          <uuidAppointment xsi:type="xsd:string"> {uuidAppointment} </uuidAppointment>
        </UpdateAppointmentsReturn>
      </UpdateAppointmentsReturn>
    </ns2:UpdateAppointmentsResponse>
  </soapenv:Body>
</soapenv:Envelope>
Request Fields
Response Fields