/
DeleteUser (v3)

DeleteUser (v3)

Overview

Deletes a User.

The function is available as a Web Service request.

Request

Parameters of the API request:

ParameterType

Description

Requirements
tokenStringAPI authentication tokenMandatory
userIdIntegerThe id of the user we would like to delete.Mandatory

Response

Parameters of the API response in DeleteUser type called return:

ParameterType

Description

statusStatus

Possible return values:

    • OK
    • ERROR_GENERAL
    • ERROR_ILLEGAL_ARGUMENT
    • ERROR_UNAUTHORIZED

Examples


 Example DeleteUser transaction.
Example DeleteGroup transaction.
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v3="http://v3.provisioning.ws.web.verba.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <v3:deleteUser>
         <token>7OoPY1HDzqW5mt6ZNH9pUjvjsaG7ZfF7</token>
         <userId>3</userId>
      </v3:deleteUser>
   </soapenv:Body>
</soapenv:Envelope>

Response:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:deleteUserResponse xmlns:ns2="http://v3.provisioning.ws.web.verba.com/">
         <return>
            <statusCode>OK</statusCode>
         </return>
      </ns2:deleteUserResponse>
   </S:Body>
</S:Envelope>



Related content

DeleteUser (v2)
More like this
DeleteGroup (v3)
DeleteGroup (v3)
More like this
DeleteGroup (v2)
DeleteGroup (v2)
More like this
UpdateUser (v2)
More like this
CreateUser (v3)
More like this
UpdateUser (v3)
More like this