You can add a user with the deleteUser method.

Permission to run the request: Account Owner, Administrator, Organization Administrator. 

Parameters

ParameterTypeDescription
credentials (required)credentialsRead the description of the Credentials object.
userId (required)stringID of the user you want to delete.

Return Value

When a call is processed successfully, the system returns an object with the following properties:

ParameterTypeDescription
successboolTrue if the user has been deleted

Possible Errors

ErrorDescription
Unknown userThe user with the given ID cannot be found.
Permission DeniedYou have no permissions to delete the specified user

Sample Call

<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns="http://ispringlearn.com/go/services/api/soap">
  <SOAP-ENV:Body>
    <DeleteUserRequest>
      <credentials>
        <accountUrl>http://myaccount.ispringlearn.com</accountUrl>
        <email>email@email.com</email>
        <password>password</password>
      </credentials>
      <userId>1</userId>
    </DeleteUserRequest>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
XML

Sample Response

<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns="http://ispringlearn.com/go/services/api/soap">
  <SOAP-ENV:Body>
    <DeleteUserResult>
      <success>true</success>
    </DeleteUserResult>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
XML