You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Method: unenroll

Permissions to Run the Request

Account Owner, Account Administrators, Department Administrators, or custom roles.

Parameters

ParameterTypeDescription
token (required)stringAccess token. You can obtain a token by making a request.
enrollmentId (required)string

The ID of the enrollment you want us to delete.

Return Value

After the request has been successfully processed, the system returns an object with the following properties:

ParameterTypeDescription
successboolTrue if the enrollment has been deleted.

Possible Errors

Error

Description

Permission deniedThe user has no permissions to delete enrollments.
Wrong parameters

The enrollment with the given ID hasn't been found. 

Sample Request

 <?xml version="1.0" encoding="utf-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
                    xmlns="https://ispringlearn.com/go/services/api/soap">
   <SOAP-ENV:Body>
     <UnenrollRequest>
       <credentials>
          <token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</token>
       </credentials>
       <enrollmentId>string</enrollmentId>
     </UnenrollRequest>
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>

Sample Response

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
                   xmlns="https://ispringlearn.com/go/services/api/soap">
  <SOAP-ENV:Body>
    <successResult>
      <success>true</success>
    </successResult>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
  • No labels