Last modified on October 21, 2013 at 5:54 pm
This service returns all completed student registrations for the given student.
Request Elements
auth | See above |
username | The 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
beginDate | The date (optional) that the student began this offering |
cost | The price the student paid to register for this offering |
deliveryFee | The amount paid to digital chalk to deliver this offering |
endDate | The date the student completed the offering |
gradePercentage | The grade the student received for this offering |
offeringId | The unique identifier of the offering |
offeringTitle | The title of the offering |
passed | true/false – whether or not the student passed the offering |
registrationDate | The date the student registered for this offering |
studentUsername | The student’s username/email address |
studentName | The 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>