Trainers - GetUnitsAwaitingVerification - Gets a list of Units awaiting Verification for a particular IV from Learning Assistant.

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

Request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://api.learningassistant.com" xmlns:types="http://api.learningassistant.com/encodedTypes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <soap:Header>
    <tns:authToken id="h_id1">
      <id xsi:type="xsd:string"> {id} </id>
      <uuid xsi:type="xsd:string"> {uuid} </uuid>
    </tns:authToken>
  </soap:Header>
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:GetUnitsAwaitingVerification>
      <userUuid xsi:type="xsd:string"> {userUuid} </userUuid>
    </tns:GetUnitsAwaitingVerification>
  </soap:Body>
</soap: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>
    <ns1:authToken loggedin="YES" xmlns="http://api.learningassistant.com" soapenv:actor="" soapenv:mustUnderstand="0" xmlns:ns1="http://api.learningassistant.com">
      <ns1:id type="xsd:string"> {id} </ns1:id>
      <ns1:uuid type="xsd:string"> {uuid} </ns1:uuid>
    </ns1:authToken>
  </soapenv:Header>
  <soapenv:Body>
    <ns2:GetUnitsAwaitingVerificationResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://api.learningassistant.com">
      <GetUnitsAwaitingVerificationReturn soapenc:arrayType="ns3:UnitAwaitingNotification[5]" xsi:type="soapenc:Array" xmlns:ns3="http://trainerservice.types.soap.webservices" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
        <GetUnitsAwaitingVerificationReturn xsi:type="ns3:UnitAwaitingNotification">
          <ActualUri xsi:type="xsd:string"> {ActualUri} </ActualUri>
          <CourseCode xsi:type="xsd:string"> {CourseCode} </CourseCode>
          <NumberOfUnits xsi:type="xsd:string"> {NumberOfUnits} </NumberOfUnits>
          <StudentRef xsi:type="xsd:string"> {StudentRef} </StudentRef>
        </GetUnitsAwaitingVerificationReturn>
      </GetUnitsAwaitingVerificationReturn>
    </ns2:GetUnitsAwaitingVerificationResponse>
  </soapenv:Body>
</soapenv:Envelope>
Request Fields
  • GetUnitsAwaitingVerification array Required
    Top level field for GetUnitsAwaitingVerification method
  • userUuid string Required
    User uuid
Response Fields
  • GetUnitsAwaitingVerificationResponse Array
    Top level field for GetUnitsAwaitingVerification method
  • ActualUri string
    Top level field for GetUnitsAwaitingVerification method
  • CourseCode string
    Top level field for GetUnitsAwaitingVerification method
  • NumberOfUnits string
    Top level field for GetUnitsAwaitingVerification method
  • StudentRef string
    Top level field for GetUnitsAwaitingVerification method