getAvailableOfferings

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

This services returns all offerings that are currently available for registration within your organization.

Request Elements

authSee above
<?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:getAvailableOfferingsRequest>
      <dcAPI:auth>
        <dcAPI:accessKey>?</dcAPI:accessKey>
        <dcAPI:timestamp>?</dcAPI:timestamp>
        <dcAPI:signature>?</dcAPI:signature>
      </dcAPI:auth>
    </dcAPI:getAvailableOfferingsRequest>
  </soap:Body>
</soap:Envelope>

Response Elements

administratorThe DigitalChalk user responsible for administrating the offering
allowRetakingWhether or not a student can retake this offering after already having completed it before
deliveryFeeThe fee charged to the organization for this registration
descriptionThe description of the offering
identifierThe offering’s unique identifier
studentPriceThe price charged to a student to register for this offering
titleThe offering’s title
useAccountBalanceIf 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:getAvailableOfferingsResponse 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:getAvailableOfferingsResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>