This is a translation of the original English documentation page. Help us make it better.

user.delete

Description

object user.delete(array users)

This method allows to delete users.

This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parametri

(array) ID degli utenti da eliminare.

Valori di ritorno

(object) Restituisce un oggetto contenente gli ID degli utenti eliminati sotto la proprietà userids.

Esempi

Eliminazione di più utenti

Elimina due utenti.

Richiesta:

{
           "jsonrpc": "2.0",
           "method": "user.delete",
           "params": [
               "1",
               "5"
           ],
           "id": 1
       }

Risposta:

{
           "jsonrpc": "2.0",
           "result": {
               "userids": [
                   "1",
                   "5"
               ]
           },
           "id": 1
       }

Fonte

CUser::delete() in ui/include/classes/api/services/CUser.php.