MediaWiki API help

This is an auto-generated MediaWiki API documentation page.

Documentation and examples: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

action=userrights

(main | userrights)
  • Ta modul zahteva pravice branja.
  • This module requires write rights.
  • Ta modul sprejema samo zahtevke POST.
  • Source: MediaWiki
  • License: GPL-2.0-or-later

Change a user's group membership.

Specifični parametri:
Na voljo so tudi drugi splošni parametri.
user

Uporabnik.

Vrsta: uporabnik, ki ustreza kateremu koli od uporabniško ime in ID uporabnika (npr. »#12345«)
userid
Opuščeno.

Specify user=#ID instead.

Vtipkajte: celo število
add

Add the user to these groups, or if they are already a member, update the expiry of their membership in that group.

Values (separate with | or alternative): bot, bureaucrat, inno, interface-admin, suppress, sysop
expiry

Expiry timestamps. May be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). If only one timestamp is set, it will be used for all groups passed to the add parameter. Use infinite, indefinite, infinity, or never for a never-expiring user group.

Loči vrednosti z | ali alternative.
Največje število vrednosti je 50 (500 za odjemalce z večjimi dovoljenimi omejitvami)
Privzeto: infinite
remove

Remove the user from these groups.

Values (separate with | or alternative): bot, bureaucrat, inno, interface-admin, suppress, sysop
reason

Reason for the change.

Default: (empty)
token

A "userrights" token retrieved from action=query&meta=tokens

For compatibility, the token used in the web UI is also accepted.

Ta parameter je obvezen.
tags

Change tags to apply to the entry in the user rights log.

Values (separate with | or alternative):
Zgledi:
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 [open in 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 [open in sandbox]
Dodajanje uporabnika SometimeSysop v skupino sysop za 1 mesec.
api.php?action=userrights&user=SometimeSysop&add=sysop&expiry=1%20month&token=123ABC [open in sandbox]