MediaWiki API súgó
Ez egy automatikusan generált MediaWiki API-dokumentációs lap.
Dokumentáció és példák: https://www.mediawiki.org/wiki/API
action=rollback
- Ez a modul olvasási jogot igényel.
- Ez a modul írási jogot igényel.
- Ez a modul csak POST kéréseket fogad el.
- Forrás: MediaWiki
- Licenc: GPL-2.0+
Undo the last edit to the page.
If the last user who edited the page made multiple edits in a row, they will all be rolled back.
- title
Title of the page to roll back. Cannot be used together with pageid.
- pageid
Page ID of the page to roll back. Cannot be used together with title.
- Típus: egész
- tags
Tags to apply to the rollback.
- Értékek (elválasztó: |):
- user
Name of the user whose edits are to be rolled back.
- Ez a paraméter kötelező.
- Típus: felhasználónév
- summary
Custom edit summary. If empty, default summary will be used.
- Default: (empty)
- markbot
Mark the reverted edits and the revert as bot edits.
- Típus: logikai (részletek)
- watchlist
Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.
- A következő értékek egyike: watch, unwatch, preferences, nochange
- Default: preferences
- token
A "rollback" token retrieved from action=query&meta=tokens
For compatibility, the token used in the web UI is also accepted.
- Ez a paraméter kötelező.
- Roll back the last edits to page Main Page by user Example.
- api.php?action=rollback&title=Main%20Page&user=Example&token=123ABC [open in sandbox]
- Roll back the last edits to page Main Page by IP user 192.0.2.5 with summary Reverting vandalism, and mark those edits and the revert as bot edits.
- api.php?action=rollback&title=Main%20Page&user=192.0.2.5&token=123ABC&summary=Reverting%20vandalism&markbot=1 [open in sandbox]