MedijaViki API pagalba

This is an auto-generated MediaWiki API documentation page.

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

action=userrights

(main | userrights)
  • This module requires read rights.
  • This module requires write rights.
  • This module only accepts POST requests.
  • Šaltinis: MediaWiki
  • Licencija: GPL-2.0-or-later

Keisti vartotoju grupės narystę.

Parametrai:
user

Vartotojo vardas.

Type: user name
userid

Vartotojo ID.

Type: integer
add

Pridėti vartotoją į šias grupes.

Values (separate with | or alternative): bot, sysop, bureaucrat
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.

Separate values with | or alternative. Maximum number of values is 50 (500 for bots).
Numatytasis: infinite
remove

Pašalinti vartotoją iš šių grupių.

Values (separate with | or alternative): bot, sysop, bureaucrat
reason

Keitimo priežastis.

Numatytasis: (tuščia)
token

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

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

Šis parametras yra reikalingas.
tags

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

Values (separate with | or alternative):
Pavyzdžiai:
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]
Add user SometimeSysop to group sysop for 1 month.
api.php?action=userrights&user=SometimeSysop&add=sysop&expiry=1%20month&token=123ABC [open in sandbox]