MediaWiki API help
This is an auto-generated MediaWiki API documentation page.
Documentation and examples: https://www.mediawiki.org/wiki/API
action=userrights
(main | userrights)
- Questo modulo richiede i diritti di lettura.
- Questo modulo richiede i diritti di scrittura.
- Questo modulo accetta solo richieste POST.
- Fonte: MediaWiki
- Licenza: GPL-2.0+
Change a user's group membership.
Parametri:
- user
Nome utente.
- Tipo: nome utente
- userid
ID utente.
- Tipo: intero
- add
Aggiungi l'utente a questi gruppi.
- Valori (separati da |): bot, sysop, bureaucrat
- remove
Rimuovi l'utente da questi gruppi.
- Valori (separati da |): bot, sysop, bureaucrat
- reason
Motivo del cambiamento.
- Predefinito: (vuoto)
- token
Un token "userrights" recuperato da action=query&meta=tokens
For compatibility, the token used in the web UI is also accepted.
- Questo parametro è obbligatorio.
Esempi:
- Add user FooBot to group bot, and remove from groups sysop and bureaucrat.
- api.php?action=userrights&user=FooBot&add=bot&remove=sysop|bureaucrat&token=123ABC [apri in una sandbox]
- Add the user with ID 123 to group bot, and remove from groups sysop and bureaucrat.
- api.php?action=userrights&userid=123&add=bot&remove=sysop|bureaucrat&token=123ABC [apri in una sandbox]