deleteUser

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

This service deletes the given student.

Request Elements

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

Response Elements

deletedtrue or false indicating the success or failure of deletion
<?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:deleteUserResponse xmlns:dcAPI="http://digitalchalk.com/api/v4">
      <dcAPI:deleted>?</dcAPI:deleted>
    </dcAPI:deleteUserResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope