MediaWiki API ヘルプ

このページは自動生成された MediaWiki API の説明文書ページです。

説明文書と例: https://www.mediawiki.org/wiki/API

action=userrights

(main | userrights)
  • このモジュールは読み取りの権限を必要とします。
  • このモジュールは書き込みの権限を必要とします。
  • このモジュールは POST リクエストのみを受け付けます。
  • Source: MediaWiki
  • License: GPL-2.0+

利用者の所属グループを変更します。

パラメーター:
user

利用者名。

Type: user name
userid

利用者ID。

Type: integer
add

利用者をこのグループに追加します。

値 (|で区切る): bot、sysop、bureaucrat
remove

Remove the user from these groups.

値 (|で区切る): bot、sysop、bureaucrat
reason

変更の理由。

既定値: (空)
token

action=query&meta=tokens から取得した「userrights」トークン

互換性のために、ウェブUIで使用されるトークンも受理されます。

このパラメーターは必須です。
例:
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 [サンドボックスで開く]
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 [サンドボックスで開く]