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=rollback

(main | rollback)
  • Denna modul kräver läsrättigheter.
  • Denna modul kräver skrivrättigheter.
  • Denna modul accepterar endast POST-begäranden.
  • Source: MediaWiki
  • License: GPL-2.0-or-later

Ångra den senaste redigeringen på sidan.

Om den senaste användaren som redigerade sidan gjorde flera redigeringar i rad kommer alla rullas tillbaka.

Parametrar:
Other general parameters are available.
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.

Type: integer
tags

Tags to apply to the rollback.

Värden (separerade med | eller alternativ):
user

Name of the user whose edits are to be rolled back.

Den här parametern är obligatorisk.
Typ: användare, genom något av användarnamn, IP-adress, interwikinamn (t.ex. "prefix>Exempelnamn") och användar-ID (t.ex. "#12345")
summary

Custom edit summary. If empty, default summary will be used.

Default: (empty)
markbot

Mark the reverted edits and the revert as bot edits.

Type: boolean (details)
watchlist

Unconditionally add or remove the page from the current user's watchlist, use preferences (ignored for bot users) or do not change watch.

Ett av följande värden: nochange, preferences, unwatch, watch
Default: preferences
token

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

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

Den här parametern är obligatorisk.
Examples:
Roll back the last edits to page Huvudsida by user Example.
api.php?action=rollback&title=Huvudsida&user=Example&token=123ABC [open in sandbox]
Roll back the last edits to page Huvudsida 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=Huvudsida&user=192.0.2.5&token=123ABC&summary=Reverting%20vandalism&markbot=1 [open in sandbox]