getCurrentStudentRegistrations

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

This service returns all offerings in which the given student is currently registered.

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:getCurrentStudentRegistrationsRequest>
      <dcAPI:auth>
        <dcAPI:accessKey>?</dcAPI:accessKey>
        <dcAPI:timestamp>?</dcAPI:timestamp>
        <dcAPI:signature>?</dcAPI:signature>
      </dcAPI:auth>
      <dcAPI:username>?</dcAPI:username>
    </dcAPI:getCurrentStudentRegistrationsRequest>
  </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
offeringIdThe unique identifier of the offering
offeringTitleThe title of 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:getCurrentStudentRegistrationsResponse xmlns:dcAPI="http://digitalchalk.com/api/v4">
      <dcAPI:studentRegistration>
        <dcAPI:offeringId>?</dcAPI:offeringId>
        <dcAPI:offeringTitle>C?</dcAPI:offeringTitle>
        <dcAPI:registrationDate>?</dcAPI:registrationDate>
        <dcAPI:studentUsername>?</dcAPI:studentUsername>
        <dcAPI:studentName>?</dcAPI:studentName>
      </dcAPI:studentRegistration>
    </dcAPI:getCurrentStudentRegistrationsResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>