Last modified on October 21, 2013 at 5:53 pm
This service returns all offerings that are currently available for registration 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:getAvailableOfferingsForStudentRequest>
<dcAPI:auth>
<dcAPI:accessKey>?</dcAPI:accessKey>
<dcAPI:timestamp>?</dcAPI:timestamp>
<dcAPI:signature>?</dcAPI:signature>
</dcAPI:auth>
<dcAPI:username>?</dcAPI:username>
</dcAPI:getAvailableOfferingsForStudentRequest>
</soap:Body>
</soap:Envelope>
Response Elements
administrator | The DigitalChalk user responsible for administrating the offering |
allowRetaking | Whether or not a student can retake this offering after already having completed it before |
deliveryFee | The fee charged to the organization for this registration |
description | The description of the offering |
identifier | The offering’s unique identifier |
studentPrice | The price charged to a student to register for this offering |
title | The offering’s title |
useAccountBalance | If true, the offering will use the organization’s account balance to pay the delivery fee for this registration |
<?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:getAvailableOfferingsForStudentResponse xmlns:dcAPI="http://digitalchalk.com/api/v4">
<dcAPI:offering>
<dcAPI:administrator>?</dcAPI:administrator>
<dcAPI:allowRetaking>?</dcAPI:allowRetaking>
<dcAPI:deliveryFee>?</dcAPI:deliveryFee>
<dcAPI:description>?</dcAPI:description>
<dcAPI:identifier>?</dcAPI:identifier>
<dcAPI:studentPrice>?</dcAPI:studentPrice>
<dcAPI:title>?</dcAPI:title>
<dcAPI:useAccountBalance>?</dcAPI:useAccountBalance>
</dcAPI:offering>
</dcAPI:getAvailableOfferingsForStudentResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>