getCompletedStudentRegistrations

Last modified on September 11, 2023 at 5:53 pm

This service returns all completed student registrations for the given student.

Request Elements

authSee above
usernameThe username/email address of the student
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dcAPI="http://digitalchalk.com/api/v4">
  <soap:Body>
    <dcAPI:getCompletedStudentRegistrationsRequest>
      <dcAPI:auth>
        <dcAPI:accessKey>?</dcAPI:accessKey>
        <dcAPI:timestamp>?</dcAPI:timestamp>
        <dcAPI:signature>?</dcAPI:signature>
      </dcAPI:auth>
      <dcAPI:username>?</dcAPI:username>
    </dcAPI:getCompletedStudentRegistrationsRequest>
  </soap:Body>
</soap:Envelope>

Response Elements

beginDateThe date (optional) that the student began this offering
costThe price the student paid to register for this offering
deliveryFeeThe amount paid to digital chalk to deliver this offering
endDateThe date the student completed the offering
gradePercentageThe grade the student received for this offering
offeringIdThe unique identifier of the offering
offeringTitleThe title of the offering
passedtrue/false – whether or not the student passed the offering
registrationDateThe date the student registered for this offering
studentUsernameThe student’s username/email address
studentNameThe student’s full name
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Header/>
  <SOAP-ENV:Body>
    <dcAPI:getCompletedStudentRegistrationsResponse xmlns:dcAPI="http://digitalchalk.com/api/v4">
      <dcAPI:studentRegistration>
        <dcAPI:offeringId>?</dcAPI:offeringId>
        <dcAPI:offeringTitle>?</dcAPI:offeringTitle>
        <dcAPI:registrationDate>?</dcAPI:registrationDate>
        <dcAPI:studentUsername>?</dcAPI:studentUsername>
        <dcAPI:studentName>?</dcAPI:studentName>
        <dcAPI:endDate>?</dcAPI:endDate>
        <dcAPI:gradePercentage>?</dcAPI:gradePercentage>
        <dcAPI:passed>?</dcAPI:passed>
      </dcAPI:studentRegistration>
    </dcAPI:getCompletedStudentRegistrationsResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>