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
| 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: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
| 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 |
| offeringId | The unique identifier of the offering |
| offeringTitle | The title of 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: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>