MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
command=update
(main | readinglists | update)
- このモジュールは内部的または不安定です。動作が予告なく変更される場合があります。
- このモジュールは読み取りの権限を必要とします。
- このモジュールは書き込みの権限を必要とします。
- このモジュールは POST リクエストのみを受け付けます。
- ソース: ReadingLists
- ライセンス: GPL-2.0-or-later
Update a list belonging to the current user.
パラメーター:
その他一般パラメーターが利用可能です。
- list
List ID. Required unless using batch update.
- 型: 整数
- name
New list name. Either this or description is required unless doing batch update.
- 255 バイトより長くすることはできません。
- description
New list description.
- 767 バイトより長くすることはできません。
- batch
Batch data for updating multiple lists in a single request, in the form of a JSON array with one or more objects with list, name and description fields. Name and description are optional but at least one of them must be present.
例:
- Change the name of the reading list with ID 42.
- api.php?action=readinglists&command=update&list=42&name=New+name&token=123ABC [サンドボックスで開く]
- Update multiple lists.
- api.php?action=readinglists&command=update&batch=%5B%7B%22list%22%3A42%2C%22name%22%3A%22New+name%22%7D%2C%7B%22list%22%3A43%2C%22description%22%3A%22New+description%22%7D%5D&token=123ABC [サンドボックスで開く]