Last modified on October 21, 2013 at 5:53 pm
This service registers an existing user into an offering on the DigitalChalk system.
Request Elements
auth | See above |
emailAddress | The email address of the user to register |
offeringId | The unique identifier for the offering into which the user will be |
registeredResponse | Elements |
<?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:registerUserRequest>
<dcAPI:auth>
<dcAPI:accessKey>?</dcAPI:accessKey>
<dcAPI:timestamp>?</dcAPI:timestamp>
<dcAPI:signature>?</dcAPI:signature>
</dcAPI:auth>
<dcAPI:username>?</dcAPI:username>
<dcAPI:offeringId>?</dcAPI:offeringId>
</dcAPI:registerUserRequest>
</soap:Body>
</soap:Envelope>
Response Elements
success |
|
offeringId | The unique identifier of the offering |
offeringTitle | The title of the offering |
studentRegistrationId | The unique identifier of the student registration |
studentUsername | The username/email address of the registered user |
studentName | The full name of the registered user |
<?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:registerUserResponse xmlns:dcAPI="http://digitalchalk.com/api/v4">
<dcAPI:studentUsername>?</dcAPI:studentUsername>
<dcAPI:studentName>?</dcAPI:studentName>
<dcAPI:studentRegistrationId>?</dcAPI:studentRegistrationId>
<dcAPI:offeringId>?</dcAPI:offeringId>
<dcAPI:offeringTitle>?</dcAPI:offeringTitle>
<dcAPI:success>?</dcAPI:success>
</dcAPI:registerUserResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>